Is there any way to make this site load faster? I'm pre-loading the slide-show images into an array, the biggest one is 80KB and still it takes a few seconds before the first image becomes visible. Is there anything else I can do to speed things up?
How to make slide show load faster?
Collapse
X
-
When in an array, they are actually fetched from the server only when its their turn. But if you will add them inside the HTML with display:none, the images would get cached. And moreover the window.onload event would be fired after the images are cached.
So on one hand you can say it will slow it down, since onload is being fired after all images are loaded. But on the other hand, it would improve the speed of the slide show as all the images would have been cached before being displayed.Comment
Comment