jQuery+CSS3小鸟飞翔动画代码

jQuery+CSS3小鸟飞翔动画代码-精品资源网
jQuery+CSS3小鸟飞翔动画代码
此内容为免费资源,请登录后查看
0
免费资源

jQuery+CSS3小鸟飞翔动画代码

jQuery+CSS3小鸟飞翔动画特效是一款利用css3的keyframes属性制作的小鸟飞翔动画代码。

js代码

<script type=\"text/javascript\">
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);
</script>

© 版权声明
THE END
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容