jquery vertical mousewheel smooth scrolling

前端 未结 5 1033
傲寒
傲寒 2020-12-02 18:30

I\'m making a parallax website and I would like to make the page scroll smoother with the mousewheel for a better user experience. The best example I could get was this webs

5条回答
  •  旧巷少年郎
    2020-12-02 19:30

    Check out skrollr. It's a plugin to create the parallax effect. It has options when you initialize the plugin to toggle smooth scrolling:

    var s = skrollr.init({
        smoothScrolling: true,
        smoothScrollingDuration: 1800
    });
    

提交回复
热议问题