gabaum10
gabaum10

Reputation: 3827

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

Upvotes: 0

Views: 5148

Answers (2)

CoffeJunky
CoffeJunky

Reputation: 1087

try out this one to:

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

the wheelspeed does not work at my page ..

Upvotes: 7

Chris
Chris

Reputation: 4370

You are searching for wheelSpeed (default is 18)

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

Upvotes: 0

Related Questions