我正在尝试实现此滚动条并想更改滚动惯性,但看起来我在下面的代码中犯了语法错误。你知道错误是什么吗?非常感谢
<script>
(function($){
$(window).load(function(){
$(".content_2").mCustomScrollbar()
scrollInertia:150
});
})(jQuery);
</script>
我正在尝试实现此滚动条并想更改滚动惯性,但看起来我在下面的代码中犯了语法错误。你知道错误是什么吗?非常感谢
<script>
(function($){
$(window).load(function(){
$(".content_2").mCustomScrollbar()
scrollInertia:150
});
})(jQuery);
</script>
改变
$(".content_2").mCustomScrollbar()
scrollInertia:150
经过
$(".content_2").mCustomScrollbar({
scrollInertia:150
});
您不是在传递数据,而是试图以某种方式定义一个对象。
$(".content_2").mCustomScrollbar({
scrollInertia:150
});
$(window).load(function(){
$(".content_2").mCustomScrollbar({
scrollInertia:150
});
});
您应该在此处查看示例以正确使用 -