文件名称:jQuery CSS3动画小鸟飞翔.zip
文件大小:134KB
文件格式:ZIP
更新时间:2022-07-31 03:40:03
js特效-jQuery CSS3动画小鸟飞翔
代码片段: var timer = setInterval(function(){ $(".box > div").animate({ 'marginLeft': 1000, },{queue:true, duration:5000,complete:function a(){ $(".box > div").css('transform','rotateY(180deg)'); }}).animate({ 'marginLeft': 50, },5000,function(){ $(".box > div").css('transform','rotateY(0deg)'); }); },1000);