Jquery JScrollPane - Set scroll speed/sensitivity

允我心安 提交于 2019-12-13 05:51:25

问题


I have a relatively simple question, I just can't find the solution for it anywhere.

Does anyone know, how to initialize the JScrollPane plugin (plugin website), with a bit more sensitive scroll speed? The default speed is just too slow and sluggish, especially on higher resolution monitors.

Example initialization:

 $('#element').jScrollPane();

回答1:


You are searching for wheelSpeed (default is 18)

$('#element').jScrollPane({wheelSpeed: 50});



回答2:


try out this one to:

$('.ym-col3').jScrollPane({ showArrows: true, mouseWheelSpeed: 60 });

the wheelspeed does not work at my page ..



来源:https://stackoverflow.com/questions/11365877/jquery-jscrollpane-set-scroll-speed-sensitivity

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!