bc17
bc17

Reputation: 333

What is quicker performance wise? IE filters or a sprite/images

I know its a bit of a stupid question because it depends on the size of the image/sprite etc, but could anyone give me an idea of what is quicker?

If you can give an answer, could you also describe how much quicker one is than they other and also any proof of this e.g. articles etc.

Many thanks in advance,

B

Upvotes: 1

Views: 122

Answers (1)

Buh Buh
Buh Buh

Reputation: 7545

Sprites are apparently slightly faster because you make fewer http requests; but I don't have any stats for you.

The only place where you will notice significant performance improvement is if you have pictures which change when you hover over them. If you use separate images then the browser will wait until the first image is hovered over before it even starts to download the second image. If you use sprites then the second picture is already loaded so will appear instantly.

Upvotes: 1

Related Questions