文件名称:jQuery CSS3小鸟飞翔动画代码.zip
文件大小:134KB
文件格式:ZIP
更新时间:2022-07-31 03:05:25
js特效-jQuery CSS3小鸟飞翔动画代码
jQuery CSS3小鸟飞翔动画特效是一款利用css3的keyframes属性制作的小鸟飞翔动画代码。 js代码 [removed] 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); [removed]