I am using CSS to show an image on hover.
HTML Markup
<a class="preview" href="#"> Preview
<img src="thumbnail_01.jpg" class="hide-image" />
</a>
CSS
.hide-image {
display: none;
z-index: 100;
position: absolute;
}
.preview:hover .hide-image {
display: block
}
When the user hovers over the "preview" link, the image displays.
The code works. However, I have over 100 images and they all load at the same time! I would like them to load only when the user hovers over the link.