我在Web应用程序中使用jQuery自定义内容滚动器,但是速度上有问题。在文档中,我看到应该使用什么方法,但是对我来说仍然很慢。
这是我的代码
$(".content").mCustomScrollbar({
theme: "light",
});
$(".content").mCustomScrollbar("scrollTo", "bottom", {
scrollInertia: 3000
});
答案 0 :(得分:0)
尝试以下代码
$(".content").mCustomScrollbar({
scrollInertia: 500,
autoHideScrollbar: true,
theme: "light",
advanced: {
updateOnContentResize: true
}
});