ChrisRChamberlain
Programmer
Hi all
The following css code, courtesy of BillyRayPreachersSon, displays an animated .gif when hovering over a thumbnailed image.
There are 30+ thumbnailed images on a webpage and preloading the animated .gifs takes too long to complete.
There is a delay whilst hovering before the animated .gif shows, so how can one indicate to the user that another image is being loaded?
TIA
![[pc2] [pc2] [pc2]](/data/assets/smilies/pc2.gif)
PDFcommander.com
motrac.co.uk
The following css code, courtesy of BillyRayPreachersSon, displays an animated .gif when hovering over a thumbnailed image.
Code:
.vvvvv {
margin:0px 5px;
float:left;
background: url(../thumbnailed/vvvvv.png) no-repeat;
width: 128px;
height: 96px;
display: block;
}
.vvvvv:hover {
margin:0px 5px 5px;
background: url(../animated/vvvvv.gif) no-repeat;
width: 450px;
height: 360px;
}
There are 30+ thumbnailed images on a webpage and preloading the animated .gifs takes too long to complete.
There is a delay whilst hovering before the animated .gif shows, so how can one indicate to the user that another image is being loaded?
TIA
FAQ184-2483
Chris ![[pc2] [pc2] [pc2]](/data/assets/smilies/pc2.gif)
PDFcommander.com
motrac.co.uk