jquery-scroll icon indicating copy to clipboard operation
jquery-scroll copied to clipboard

MouseWheel Scroll speed

Open RaXaR opened this issue 13 years ago • 2 comments

The MouseWheel Scroll speed is very slow (tiny increments). What would be the best approach to increase it? OR could you implement a property like 'arrows' to set it.?

RaXaR avatar Nov 01 '11 08:11 RaXaR

I just recently encountered this problem and I solved it by adding a line of code to the onMouseWheel function that multiplies delta by the scrollStep property to increase the mouse wheel speed:

onMouseWheel: function(ev, delta){

delta *= this.opts.scrollStep; //added line here this.handle.top -= delta;

... }

hLittle avatar Nov 01 '11 14:11 hLittle

Ah yes, that worked beautifully thank you very much.

RaXaR avatar Nov 01 '11 20:11 RaXaR