Skip to content

Instantly share code, notes, and snippets.

@rblakejohnson
Created September 11, 2013 15:19
Show Gist options
  • Save rblakejohnson/6525127 to your computer and use it in GitHub Desktop.
Save rblakejohnson/6525127 to your computer and use it in GitHub Desktop.
JS: animated scroll
$('a').on('click', function() {
$('html,body').animate({
scrollTop: $('.box').offset().top - 10
}, 200);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment