//气球动画 function myfn(o,t){ var n=0; var status=0; setInterval(function(){ var top1=o.offset().top;//40 n++; if(status==0){ o.offset({top:top1+1}); }else{ o.offset({top:top1-1}); } if(n==20){ status=status==0 ? 1: 0; n=0; } },t); }; $(‘.cardList li‘).each(function(index) { if(index%2==1){ time=70; }else if(index%2==2){ time=30; }else{ time=50; } myfn($(this),time); });
时间: 2024-10-06 21:01:21