/ Published in: JavaScript
Expand |
Embed | Plain Text
$('.fadeClip').mouseenter(function(e) { $(this).find("img").animate({ opacity: .25}, 250); $(this).find(".fadeItem").animate({ left: "13px" }, 250); $(this).find(".fadeSub").delay(250).fadeTo(250, 1); }).mouseleave(function(e) { $(this).find("img").animate({ opacity: 1}, 250); $(this).find(".fadeItem").animate({ left: "8px" }, 250); $(this).find(".fadeSub").fadeTo(100, 0); });
You need to login to post a comment.
