Skip to content

Instantly share code, notes, and snippets.

@ZakharDay
Created June 25, 2020 10:24
Show Gist options
  • Save ZakharDay/69c21833df926673ec8cbee1fc98e878 to your computer and use it in GitHub Desktop.
Save ZakharDay/69c21833df926673ec8cbee1fc98e878 to your computer and use it in GitHub Desktop.
$(function() {
$('nav a').each(function() {
$(this).on('click', function(e) {
e.preventDefault()
var scrollTo = $(this).attr('href')
var whitespace = scrollTo == '#h1-about' ? 120 : 80
$('html,body').animate({
scrollTop: $(scrollTo).offset().top - whitespace
}, 1000)
})
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment