0

somebody know how to make a smooth mouse scroll, like this page? http://www.werkstatt.fr/#/project/dior-addict

I've already searched the web, but cannot find any good solution for this issue.

torm
  • 5
  • 1
  • 6

1 Answers1

0

From Cymen's answer on stack overflow, jquery vertical mousewheel smooth scrolling

$(document).ready(function() {
    var page = $('#content');    
    $(window).mousewheel(function(event, delta, deltaX, deltaY){
        if (delta < 0) page.scrollTop(page.scrollTop() + 65);
        else if (delta > 0) page.scrollTop(page.scrollTop() - 65);
        return false;
    })
});
Community
  • 1
  • 1
74U n3U7r1no
  • 309
  • 1
  • 13
  • thnx for answer, but it didn't work... i found in the same question on stack the answear that works for me, here it is: http://areaaperta.com/nicescroll/ – torm Jul 10 '15 at 01:40