0

Hy there I'm looking for a way to enable smooth scrolling for a Webbpage as here: http://unik.weblusive-themes.com/

To be more specific. I'm not looking for a smooth-scroll (click to an anchor-link and slide down to the anchor) but a way to get a smoother feeling when you scroll the page. I guess it's a jQuery Plugin?

Thanks!

Nico Martin
  • 1,268
  • 1
  • 14
  • 23

3 Answers3

0

I use the jQuery plugin Waypoints (http://imakewebthings.com/jquery-waypoints) and it's pretty easy to set up and use for vertical and horizontal scrolling.

clint_milner
  • 365
  • 6
  • 18
0

Best way is use Jquery .animate() and .scrollTop()

$("#button").click(function() {
    $('html, body').animate({
        scrollTop: $("#myDiv").offset().top
    }, 2000);
});
prog1011
  • 3,425
  • 3
  • 30
  • 57
0

I found it: Smooth Scrolling like Parallax I think the google keyword I was looking for was "jquery smooth mouse wheel scroll"

Nico Martin
  • 1,268
  • 1
  • 14
  • 23