Created
January 27, 2018 15:05
-
-
Save sharkyak/c9870d20e67ad988542ba5d14303bd3a to your computer and use it in GitHub Desktop.
pure js smooth page scroll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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