Skip to content

Instantly share code, notes, and snippets.

@TeamBug99
Created September 22, 2021 19:14
Show Gist options
  • Save TeamBug99/f14a02bca6c72ad9f639f14b4c1e8432 to your computer and use it in GitHub Desktop.
Save TeamBug99/f14a02bca6c72ad9f639f14b4c1e8432 to your computer and use it in GitHub Desktop.
One page menu
// Menu Nav
function smoothSctollTop() {
$('.main-menu ul li > a').on('click', function (event) {
var target = $(this.getAttribute('href'));
if (target.length) {
event.preventDefault();
$('html, body').stop().animate({
scrollTop: target.offset().top - 80
}, 1000);
}
});
}
smoothSctollTop();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment