Skip to content

Instantly share code, notes, and snippets.

@ahaywood
Last active December 16, 2015 03:18
Show Gist options
  • Save ahaywood/5368677 to your computer and use it in GitHub Desktop.
Save ahaywood/5368677 to your computer and use it in GitHub Desktop.
JS: Smooth Scrolling
$('nav a').click(function(e){
e.preventDefault();
var goto = $(this).parent().attr('class');
var contentPosTop = $('section#' + goto).position().top - 50;
$('html, body').stop().animate({
scrollTop: contentPosTop
}, 1500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment