Log in

View Full Version : large file needs loading icon



well being by design
09-22-2006, 08:56 PM
I have a large JPG on my website. Down here in the Caribbean, our high speed is sputtering along. How do I add a loading icon so viewers know to wait for what's coming up?

ItsMeOnly
09-22-2006, 09:31 PM
how about:



.bigimage {
background-image: url(please_wait_while_loading.gif);
background-position: 50% 50%;
background-repeat: none;
}

mburt
09-24-2006, 05:21 PM
The image will still have to load into the user's cache before it can be displayed. This doesn't work for dial-up users.

jscheuer1
09-24-2006, 06:31 PM
It could work, if the loading image is of a small byte size and preloaded or even just mentioned in the code before the larger image, it will display until the larger image can.

mburt
09-24-2006, 07:03 PM
<img lowsrc="loadingImage.gif" src="largeImage.gif">

jscheuer1
09-25-2006, 01:32 AM
<img lowsrc="loadingImage.gif" src="largeImage.gif">

Not supported in modern browsers as far as I know. Have you ever seen this actually work?