I\'ve looked for the answer for this and I found it, but I don\'t know how to use it.
Stop a gif animation onload, on mouseover start the activation
Guffa\'s
I haven't read the link, however the easiest way to do this is to change the img tags src attribute with javascript on hover like this (jQuery)
$(function() {
$('a').hover(function() {
$(this).attr('src','path_to_animated.gif');
},function() {
$(this).attr('src','path_to_still.gif');
}
});
No plugins required... you might want to preload the animated gif by adding $(' before the hover bind.',{ src: 'path_to_animated.gif'});
Hope that helps