自定义滚动条 - 鼠标滚轮太慢

Hus*_*din 8 javascript jquery scrollbar

我正在一个包含带有自定义滚动条的div的网站上工作.我的问题是鼠标滚轮不能正常工作,它太慢了.

该网站是http://alaaelseifi.net/,自定义滚动库来自http://manos.malihu.gr/

脚本发布如下:

$(window).load(function() {
    $(".scroll-pane").mCustomScrollbar();
    //code that make scrolling with mouse faster
});
Run Code Online (Sandbox Code Playgroud)

obi*_*mme 19

您可以在scoll库文档中描述的选项中设置滚动速度:http://manos.malihu.gr/jquery-custom-content-scroller/

我认为你要找的是这样的:

$(".scroll-pane").mCustomScrollbar({
  mouseWheelPixels: 50 //change this to a value, that fits your needs
})
Run Code Online (Sandbox Code Playgroud)

只需玩弄价值,直到你需要的速度一样快.


小智 14

我还注意到我网站上的"缓慢"感觉是由于默认情况下滚动惯性已打开,如果你使用以下它会将其关闭并导致条形图不会延迟尝试:

$(".scroll-pane").mCustomScrollbar({
    scrollInertia: 0
});
Run Code Online (Sandbox Code Playgroud)