Hey guys, is there any way to stop an <img> tag loading its image by just using CSS ?
display: none;
visibility: hidden;
doesn't seem to work. (Firebug still shows the images loading.)
I would like to avoid using JavaScript.
|
Hey guys, is there any way to stop an
doesn't seem to work. (Firebug still shows the images loading.) I would like to avoid using JavaScript. |
|||||||
|
|
No — CSS only tells browsers what content should look like, it doesn’t specify loading behaviour. The best you could do that involves CSS is to remove the I still don’t think you can guarantee when the image will be downloaded though — I seem to remember early versions of Safari would download images referenced in a stylesheet even if they weren’t used on the current page? Using JavaScript (to create the |
|||||||
|
|
You can PRELOAD images using CSS only, but not actually delay the loading of images using CSS only. This can, however, be done easily using something like jQuery Lazy Loader, which is MUCH easier than trying to do it by hand. |
|||||
|
|
You then set them all to be
this will prevent them from making an http request but still preserves their size and spacing in the document preventing any redraws. then when you want to show your hidden images (for instance the ones in view) you add a class to the surrounding html element and in your css tell this to be
That should do it, Holmes. |
||||
|
|
|
Place this at the end of your style sheet:
|
|||
|
|