jQuery自定义内容滚动条的速度

时间:2018-10-15 10:31:41

标签: javascript jquery html

我在Web应用程序中使用jQuery自定义内容滚动器,但是速度上有问题。在文档中,我看到应该使用什么方法,但是对我来说仍然很慢。

这是我的代码

$(".content").mCustomScrollbar({
        theme: "light",

    });
$(".content").mCustomScrollbar("scrollTo", "bottom", {
    scrollInertia: 3000
});

1 个答案:

答案 0 :(得分:0)

尝试以下代码

 $(".content").mCustomScrollbar({
        scrollInertia: 500,
        autoHideScrollbar: true,
        theme: "light",
        advanced: {
            updateOnContentResize: true
        }
    });