Skip to content

Instantly share code, notes, and snippets.

@rodrigobertin
Created October 5, 2017 05:04
Show Gist options
  • Save rodrigobertin/9e0bc8d1d29dac044c5e27ed8d5a6fb5 to your computer and use it in GitHub Desktop.
Save rodrigobertin/9e0bc8d1d29dac044c5e27ed8d5a6fb5 to your computer and use it in GitHub Desktop.
Nav animado
$('nav a').on('click', function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top}, 500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment