用法: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>
效果图: