Skip to content

Instantly share code, notes, and snippets.

@rodi01
Created February 1, 2012 06:33
Show Gist options
  • Save rodi01/1715505 to your computer and use it in GitHub Desktop.
Save rodi01/1715505 to your computer and use it in GitHub Desktop.
Animated Page Scroll with jQuery
$('.scrollPage').click(function() {
var elementClicked = $(this).attr("href");
var destination = $(elementClicked).offset().top;
$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment