How to slow down scrolling speed with Javascript?

后端 未结 2 553
面向向阳花
面向向阳花 2021-01-14 10:32

When I scroll some litlle div with many elements, my mouse scrolling is too fast so I can\'t see few elements.

2条回答
  •  梦毁少年i
    2021-01-14 11:03

    You can use NiceScroll plugin with jQuery:

    $(document).ready(function() { 
    
        $("html").niceScroll();
    
      }
    
    );
    

    Or jQuery.scrollSpeed plugin.

提交回复
热议问题