xxxxxxxxxx
<!DOCTYPE html>
<html>
<title>jQuery 动画已完成示例 - 基础教程(div.cn)</title>
<head>
<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("div").animate({
width:"500px",
height:"400px"
}, 500, "linear",
function(){
$(this).after("<h2>动画已完成</h2>");
});
});
});
</script>
<style>
div {
height: 100px;
width: 100px;
margin: 10px 0;
background: coral;
}
</style>
</head>
<body>
<button type="button">动画</button>
<div></div>
</body>
</html>