任何添加淡入淡出的机会使用此功能,使用下面的功能在我的网站上旋转拇指
$(document).ready(function(){
var timer,
count = 0,
cycle = function(el){
var s = el.attr('src'),
root = s.substring( 0, s.lastIndexOf('/') + 1 );
count = (count+1)%4;
el.attr('src', root + ((count==0) ? 'default' : count) + '.jpg');
};
$('.img').hover(function(){
var $this = $(this);
cycle($this);
timer = setInterval(function(){ cycle($this); }, 800);
}, function(){
clearInterval(timer);
});
})