码迷,mamicode.com
首页 > 其他好文 > 详细

jq-animate动画效果

时间:2015-05-31 15:17:04      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

前几天做项目时PM突然跟我说,这块再弹出的时候要加动画,要有玄幻元素... 我想了想,那就用jq的动画吧,但开始做的时候出了点小问题,原因就是参数给错了,突然想起animate只接受数字值。

上个代码吧,警示自己,不能学一些忘一些。

$(document).ready(function()
  {
  $(".btn1").click(function(){
    $("#box").animate({height:"300px"});
  });
  $(".btn2").click(function(){
    $("#box").animate({height:"100px"});
  });
});
</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>

 

jq-animate动画效果

标签:

原文地址:http://www.cnblogs.com/GetAlert/p/4541907.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!