I don't have much experience with the sprite approach to images (http://www.alistapart.com/articles/sprites). Anyone care to share some pros/cons of sprites vs. old-school slices?
|
3
|
|
|
|
|
|
One often overlooked downside of using CSS sprites is memory footprint: http://blog.vlad1.com/2009/06/22/to-sprite-or-not-to-sprite/ When sprites get loaded into the browser, they are stored uncompressed. So, a 26 KB file can take up 75 MB of RAM. You should be mindful of using sprites with very large dimensions. There's also the issue of what happens in browsers with poor CSS support (e.g. mobile browsers). The sprites may end up totally broken. |
||
|
|
|
|
I prefer going the middle ground of grouping similar images (normal, hover, selected page, the parent page of selected page) than having all the images in one file. To make these, you image slice like normal in Photoshop or Illustrator, open the files up and combine them with a shortcut key. I wrote the Photoshop script that combines images into CSS sprites. You will have multiple HTTP connections, but won't have the load delay on hover. |
||
|
|
|
|
CSS Sprites: Pros:
Cons:
Image slicing: Pros:
Cons:
|
||
|
|
|
|
Cons - slower on older browsers/ maybe not working on them with hover effect (opera6) - if not used correctly can get very/too huge (group them adequately!) - tedious work to set them up Pros - less bytes transfered, because one big image is smaller then all individual images combined (one header/ color table) - less http requests |
||
|
|
|
|
Look into using a CSS sprite generator (we use SmartSprites). That way you can do slices locally, and have your build process generate a spritemap. It's the best of both worlds. Also is SmartSprites isn't for you, there's definitely others, however I like it because it reduces the amount of work up front AND during changes. |
||
|
|
|
|
pros using sprites : since it is using 1 images for all, it require less load on http server. cons: - hard to code. you must know the coordinate each images inside sprites so you can display it correctly. once you change the size of the image, you need to adjust all ... - big images could creates long waited page to display. while using images, user with slow internet connection can see one by one. best practices. use it for example roll over images. |
||
|
|
|
|
SpritesPros:
Cons:
|
||
|
|
|
|
Pros:
Cons:
|
||
|
|
|
|
The main drawback of sprites is it makes it hard to read/maintain/modify your CSS. It can be difficult to remember the exact pixel offsets within the sprite. |
||
|
|
|
|
The main advantage of sprites is that the browser has to request less pictures from the webserver. That reduces the number of HTTP requests and makes it possible to compress the parts of the design more effectively. These two points also represent the disadvantages of sliced images. Here you can see some good examples how sprites improve the loading speed of web pages: |
||
|
|
