/ Published in: Other
Expand |
Embed | Plain Text
$.fn.crossfade = function(){ return this.each(function(){ var $$ = $(this); $$.not('.current').hover(function(){ $$.stop().animate({opacity:0},300); },function(){ $$.stop().animate({opacity:1},600); }); }); };
You need to login to post a comment.
