码迷,mamicode.com
首页 > Web开发 > 详细

jQuery动画animate()的使用

时间:2017-06-26 21:18:24      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:文档   art   sdn   center   tle   style   分享   回调函数   效果   

自己定义动画效果:

使用方法:animate(js对象,运行时间。回调函数);
js对象:{ }描写叙述动画运行之后元素的样式
运行时间:毫秒数

回调函数:动画运行结束后要运行的函数


html代码:

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript" src="jquery-2.1.4/jquery.min.js" language="javascript"></script>
</head>

<body>
<div id="div1" style="width:200px; height:100px; background-color:#999999; position:absolute"  onclick="f1()"></div>

</body>
<script>
function f1(){
<span style="white-space:pre">			</span>//距离左 50%。距离上 300px 结果:斜下移动
	$("#div1").animate({"left":"50%","top":"300px"},3000,function(){
	  alert("动画完毕");
	});

	
}
</script>
</html>

效果图:

技术分享








jQuery动画animate()的使用

标签:文档   art   sdn   center   tle   style   分享   回调函数   效果   

原文地址:http://www.cnblogs.com/clnchanpin/p/7082104.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!