Created
May 23, 2018 07:11
-
-
Save ajayvarghese/cf8ebbf9090088a692015cce6721927c to your computer and use it in GitHub Desktop.
Scroll to top of website on Click of button
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.getElementsByClassName('Overview__up-arrow___Y5yuq')[0].addEventListener('click', () => { | |
console.log('Clicked'); | |
yPos = window.scrollY; | |
k = setInterval( () => { | |
if(yPos >= 0){ | |
yPos = yPos - 100; | |
window.scrollTo(0, yPos); | |
} else { | |
clearInterval(k); | |
} | |
}, 1) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment