Skip to content

Instantly share code, notes, and snippets.

@hmbashar
Last active September 13, 2019 19:09
Show Gist options
  • Save hmbashar/20808353b2c165acdfff7ec97ee86fc6 to your computer and use it in GitHub Desktop.
Save hmbashar/20808353b2c165acdfff7ec97ee86fc6 to your computer and use it in GitHub Desktop.
Menu to section scrolling animation js
$(document).on('click', 'ul.menu li a', function(event) {
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 1500, 'easeInOutExpo');
event.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment