0

代码:

    <script>
$(document).ready(function() {

  $('.sync_box').on('click', function(e){
    e.preventDefault();
    var $btn = $(this);
    $btn.toggleClass('opened');

    var heights = $btn.hasClass('opened') ? 300 : 100 ;
    $('.sync_box').stop().animate({height: heights });
  });
});
    </script>

我可以在这个脚本的哪里添加时间来减慢它的速度?我相信这很明显,但我是 jquery/js 的新手,所以有点困惑。请帮忙。谢谢!

4

2 回答 2

2
<script>
$(document).ready(function() {

  $('.sync_box').on('click', function(e){
    e.preventDefault();
    var $btn = $(this);
    $btn.toggleClass('opened');

    var heights = $btn.hasClass('opened') ? 300 : 100 ;
    $('.sync_box').stop().animate({height: heights },2000);
  });
});
</script>

上面编辑的示例。2000 是毫秒。

参考http://api.jquery.com/animate/

于 2013-09-05T19:34:19.227 回答
1
$('.sync_box').stop().animate({ height: heights }, TIME_IN_MS);

有哥们

请务必在此处查看 jquery animate api 。

于 2013-09-05T19:31:10.003 回答