<h3>制作简单的动画效果</h3>
<span></span>
<div id="tip"></div>
<script type="text/javascript">
$(function(){
$("span").animate({
width:"200px",
height:"400px"
},
3000,function(){
$("#tip").html("完了")
});
})
</script>
<h3>制作简单的动画效果</h3>
<span></span>
<div id="tip"></div>
<script type="text/javascript">
$(function(){
$("span").animate({
width:"200px",
height:"400px"
},
3000,function(){
$("#tip").html("完了")
});
})
</script>
2014-08-26
举报