Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created May 10, 2013 13:46
Show Gist options
  • Save claudiosanches/5554491 to your computer and use it in GitHub Desktop.
Save claudiosanches/5554491 to your computer and use it in GitHub Desktop.
Navegação com scroll
jQuery(document).ready(function($) {
$('#ID-DO-MENU a').on('click', function(e) {
e.preventDefault();
$('html, body').animate({
scrollTop: $(this.hash).offset().top
}, 1500, 'NOME_DO_SEU_EASING');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment