jquery-scroll
jquery-scroll copied to clipboard
MouseWheel Scroll speed
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.?
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;
... }
Ah yes, that worked beautifully thank you very much.