vote up 20 vote down star
8

So I was looking at the facebook HTML with firebug, and I chanced upon this image and came to the conclusion that facebook uses this large image (with tricky image positioning code) rather than many small ones for its graphical elements. Is this more efficient than storing many small images?

Can anybody give any clues as to why facebook would do this.

flag

75% accept rate
This is an old method back from many years ago, when computer games developers had created image sprites. for a major website like Facebook it really saves a lot for performance issues. also, all the graphics are showed at once, and not one after another (load sequence) – vsync Aug 26 at 19:39

11 Answers

vote up 22 vote down check

These are called CSS sprites, and yes, they're more efficient - the user only has to download one file, which reduces the number of HTTP requests to load the page. See this page for more info.

link|flag
vote up 13 vote down

The theory behind that is explained here: http://css-tricks.com/css-sprites/, also have a look here, as it underlines why do you really need one big image. I also say that all the article is interesting :)

link|flag
the link to developer.yahoo.com is excellent. +1 – Jim Schubert Aug 26 at 15:05
vote up 9 vote down

Feeling the need to weigh in on this one.

In order to protect myself from rate-downs, I should first say that I do understand the need for CSS Sprites, and use them myself.

The problem is that pro-performance articles always seem to present the Why (performance), often without the How, and never seem to go into the Why Not.

CSS Sprites do have a positive impact on performance, for reasons that other posters here have gone into in detail. However, they do have a downside: maintainability; it's often much more difficult to make changes to a highly optimised sprite map and background-position-riddled stylesheet than it is to simply switch one image file for another, add an image, remove an image etc. If you've manually optimised your sprite map, then the client tells you that an image right in the middle needs to be 20px bigger... wow that's a headache.

I think it's a minority view, but I firmly believe that in the vast vast vast majority of cases, maintainability concerns should outweigh performance concerns. There are a few people who at least partly agree with me.

Do take that into account before deciding to use them.

That said, the performance impact is massive - particularly when you're using rollovers and want to avoid that hideous effect you get when you mouseover an image then the browser goes away to request the rollover image (and you want to avoid that also hideous deamweaver image preload script). I think in most cases, it's probably appropriate to refactor your images into a sprite map once your requirements have settled down - particularly if your site is going to be under heavy traffic (and certainly the big examples people have been pulling out - facebook, amazon, yahoo - all have to deal with that).

If at all possible, use a tool, and document your use of it so that whoever has to maintain your sprites knows about it. http://csssprites.org/ is the only tool I've looked into in any detail, but http://spriteme.org/ looks seriously awesome.

link|flag
I myself split my image sprites to several files for maintainability. – vsync Aug 26 at 19:34
1  
Why would you manually create a sprite map? Anyways, let's say you did. Rather than rearranging everything, add your new stuff at the edge of the picture so no measurements are impacted. – Nerdling Aug 28 at 19:08
@Nerdling: Because just about every article people have linked to here tells you to? Anyway, it's less the sprite map, and more the background-position tags that are a pain to maintain. Sure, add new stuff at the edge, but what happens when the client wants a button that ended up in the middle of the map to be bigger? – Iain Galloway Sep 3 at 8:21
vote up 4 vote down

Since other users have answered this already, here's how to do it, and another way is here.

link|flag
vote up 2 vote down

Opening connections is more costly than simply continuing a transfer. Similarly, the browser only needs to cache one file instead of hundreds.

link|flag
vote up 1 vote down

One of the major benefits of CSS sprites is that it add virtually 0 server overhead and is all calculated client side. A huge gain for no server side performance hit.

link|flag
vote up 0 vote down

Simple answer, you only have to 'fetch' one image file and it is 'cut' for different views, if you used multiple images that would be multiple files you would need to download, which simply would equate into additional time to download everything.

Cutting up the large image into 'sprites' makes one HTTP request and provides a no flicker approach as well to 'onmouseover' elements (if you reuse the same large image for a mouse over effect).

link|flag
vote up 0 vote down

Css Sprites tecnique is a method for reducing the number of image requests using background position. Best Practices for Speeding Up Your Web Site

CSS Sprites: Image Slicing’s Kiss of Death

link|flag
vote up 0 vote down

Google also does it - I've written a blog post on it here: http://www.stevefenton.co.uk/Content/Blog/Date/200905/Blog/Google-Uses-Image-Sprites/

But the essence of it is that you make a single http request for one big image, rather than 20 small http requests.

If you watch a http request, they spend more time waiting to start downloading than actually downloading, so it's much faster to do it in one hit - chunky, not chatty!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.