Custom scrollbar - mouse wheel too slow
javascript, jquery, scrollbar
Solution
You can set the speed of scrolling in the options as described in the scoll libraries documentation here: http://manos.malihu.gr/jquery-custom-content-scroller/
I think what you are looking for is something like this:
$(".scroll-pane").mCustomScrollbar({
mouseWheelPixels: 50 //change this to a value, that fits your needs
})
Just play around with the value until scolling is as fast as you need it.
Problem
I'm working on a site which contains a div with a custom scroll bar. My problem is that the mouse wheel doesn't work properly, it's too slow. The site is http://alaaelseifi.net/ and the custom scroll library is from http://manos.malihu.gr/ The script issupposed to be like this: ``` $(window).load(function() { $(".scroll-pane").mCustomScrollbar(); //code that make scrolling with mouse faster }); ```