How to create a smooth scroll effect?

I saw a good scroll effect on this website http://www.agileinfoways.com/ and would like to know how to implement it. I had never seen this before, and I do not know what it is even called. Scrolling almost facial expressions UIScrollViewon the iOS platform. Any advice on how to create this would be helpful. Thanks

+4
source share
2 answers

This site uses the NiceScroll plugin for jQuery

GitHub plugin page - https://github.com/inuyaksa/jquery.nicescroll

The initialization code from the site that you gave:

if (jQuery().niceScroll) {
    $("html").niceScroll({
        scrollspeed: 70, 
        mousescrollstep: 38, 
        cursorwidth: 15, 
        cursorborder: 0, 
        cursorcolor: '#464646', 
        cursorborderradius: 0, 
        autohidemode: false, 
        horizrailenabled: false
    });
}
+1
source

js , jquery.nicescroll : http://areaaperta.com/nicescroll/

+1

Source: https://habr.com/ru/post/1548571/


All Articles