<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>调用animate实现小动画</title>
<link rel="stylesheet" href="">
<style>
*{ margin: 0; padding: 0}
span{background-color: #f00;border: 1px solid blue; width:80px; height: 80px}
</style>
</head>
<body>
<h4>调用animate实现小动画</h4>
<span></span>
<div id="tip"></div>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$("span").animate({
left:"+=100px",
},3000,function(){
$("span").animate({
width:"+=100px",
height:"+=100px"
},3000,function(){
$("#tip").html("多功能化");
});
});
});
</script>
</body>
</html>