Skip to content

Instantly share code, notes, and snippets.

@sharkyak
Created January 27, 2018 15:05
Show Gist options
  • Save sharkyak/c9870d20e67ad988542ba5d14303bd3a to your computer and use it in GitHub Desktop.
Save sharkyak/c9870d20e67ad988542ba5d14303bd3a to your computer and use it in GitHub Desktop.
pure js smooth page scroll
document.querySelector('.page-hero a').addEventListener('click', function () {
document.querySelector('#footer').scrollIntoView({
behavior: 'smooth'
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment