Reputation: 2950
Currently I am using a image sprite having size of 200K and its load time is 4.9 second.
My Question is,
Thanks
Upvotes: 1
Views: 152
Reputation: 39872
It matters if you want certain images to show up before others. Obviously no images can be shown until the whole thing loads. If there are elements of particular importance then break them into a separate file.
Yes
Compression won't get you very much because you are probably already using a compressed image format like jpeg or png.
If you need to optimize page load speed I would do my suggestion in point one and possibly use async requests for remaining images.
Upvotes: 2