码:

    <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的新手,所以有点困惑。请帮忙。谢谢!

最佳答案

$('.sync_box').stop().animate({ height: heights }, TIME_IN_MS);


有哥们。

确保检查jquery animate api here

07-27 14:45