JQuery 动画

<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function()
  {
  $(".btn1").click(function(){
    $("#box").animate(
{
height:"toggle",
width:'toggle'
//marginTop:"-100"
}
,5000,function(){$(".btn1").click()});
  });
  $(".btn2").click(function(){
    $("#box").animate({height:"toggle",right:"toggle"});
  });
});
</script>
</head>
<body>
<div id="box" style="background:#98bf21;height:100px;width:100px;margin:6px;">
</div>
<button class="btn1">Animate</button>
<button class="btn2">Reset</button>
</body>
</html>

posted on 2012-10-18 16:38  Longlone  阅读(135)  评论(0编辑  收藏  举报

导航