Add a fade effect to this image replacement jQuery snippet -


i'm using image replacement jquery snippet when hovers on thumbnail, "main" image changes;

$('.circle img').hover(function () { $('#main-image').attr('src', $(this).attr('src')); }); 

is there way make "main" images fade 1 when hovers on .circle img instead of them switching?

using fadein() or fadeout() effect can done


Popular posts from this blog

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -