I was wondering if there's a way though to kind of preload those images to make them appearing faster and smoother. Or maybe there's a way to preload all the other pages and images into the cache so that at least all the following pages after the first appear smooth and fast? Whatever helps to make the pages load faster and smoother.
Any suggestions?
Each image consists of a variety of images, all of them within one wide image (prepared in PSD) and the visitor can shift left and right to call for the respective image to appear in the center. Unfortunately sacrificing on the image quality or make them smaller is not an option here.
I know there are posts here on preloading images ad stuff but I can't find any that work with the image embedded in the HTML code.
Please have merci, I'm a CSS and Javascript novice, so the simpler the more likely I'll understand it. I'm afraid breaking up the images in single instances (make it a row of images instead of one whole image), place them in a floated div and change the respective Javascript code could be too challenging for me, right...? How else could I do that? I there a way to achieve it with only CSS?
Appreciated!
Here's what I have (I guess it would be overkill to post all my HTML, Javascript and CSS here, I'll post some). The large images are placed within the HTML page and called via Javascript. Like this
There are a couple of ways I can think of to reduce the issue, but they all require splitting up the very large graphic file. To begin, browsers will try to load any image file referred to in an <img> tag, but you don't really have much control over the sequence in which they are loaded. They're generally going to load in the order in which they appear in the HTML code, but that's not a hard and fast rule.
You could stick with plain HTML and just have multiple <img> tags. And if you store the image files on different domain (or subdomain), it will give you some improvement in performance because most browsers will only keep 4 simultaneously open HTTP requests per domain. This is certainly the easiest solution and the best place to start.
The other option would be to only include the images needed for the initial display in the HTML, and write some JavaScript to load the balance of the images in the background or almost on-demand. Not a simple job, but not outrageously difficult either.
Bookmarks