
March 12th, 2013, 12:29 AM
|
|
Contributing User
|
|
Join Date: Oct 2012
Posts: 54
Time spent in forums: 10 h 32 m 59 sec
Warnings Level: 1
Reputation Power: 1
|
|
Oh okay and thanks for the detailed explanation.
that makes sense and I appreciate your time.
I hope the wall paper image doesn't delay loading time after getting small images on CSS sprite.
Thanks again.
Quote: | Originally Posted by E-Oreo I believe the answer is no unless there are some newer CSS techniques for handling images that I'm not aware of. If the container for the image is larger than the image, then you can't put it into a sprite. Since this is true of the <body>, you can't. If you put the background image into something like a <div> instead, then you could potentially put it into a sprite as long as it doesn't repeat.
Using a sprite doesn't speed up the load time of big images; the image data takes the same amount of time to transfer regardless. What a sprite does is reduce the number of HTTP requests. This is most effective at reducing the load time for small images, because the HTTP request for a small image represents a substantial part of the time required to retrieve the image, whereas for a large image the HTTP request does not represent a substantial part of the time required to retrieve the image. |
|