下载jquery.js到指定文件夹,然后浏览器打开该网页,会看到动画效果
也可以直接到W3School的在线测试工具上,输入查看效果 http://www.w3school.com.cn/tiy/t.asp?f=jquery_animation
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#start").click(function(){
f0();
});
});
function f0(){
$("#box").animate({height:300},"slow");
$("#box").animate({width:300},"slow");
$("#box").animate({height:100},"slow");
$("#box").animate({width:100},"slow");
f0();
}
</script>
</head>
<body>
<p><a href="#" id="start">Start Animation</a></p>
<div id="box"
style="background:#98bf21;height:100px;width:100px;position:relative">
</div>
</body>
</html>
这个是效果截图: