简体   繁体   中英

Jquery JScrollPane - Set scroll speed/sensitivity

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();

try out this one to:

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

the wheelspeed does not work at my page ..

您正在搜索wheelSpeed (默认值为18)

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM