0

我正在尝试实现此滚动条并想更改滚动惯性,但看起来我在下面的代码中犯了语法错误。你知道错误是什么吗?非常感谢

<script>
    (function($){
        $(window).load(function(){
            $(".content_2").mCustomScrollbar()
            scrollInertia:150
        });
    })(jQuery);
</script>
4

3 回答 3

1

改变

$(".content_2").mCustomScrollbar()
scrollInertia:150

经过

$(".content_2").mCustomScrollbar({
   scrollInertia:150
});
于 2013-05-09T14:48:51.017 回答
1

您不是在传递数据,而是试图以某种方式定义一个对象。

$(".content_2").mCustomScrollbar({
            scrollInertia:150
});
于 2013-05-09T14:49:00.173 回答
0
 $(window).load(function(){
     $(".content_2").mCustomScrollbar({
          scrollInertia:150
     });      
 });

您应该在此处查看示例以正确使用 -

http://manos.malihu.gr/jquery-custom-content-scroller/

于 2013-05-09T14:50:12.250 回答