Created
February 20, 2021 12:17
-
-
Save sr9yar/46d07785eac774682c681acf1eeb1a47 to your computer and use it in GitHub Desktop.
Scroll to top animation with js
This file contains 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
goToTop() { | |
const scrollToTop = window.setInterval(() => { | |
const pos = window.pageYOffset; | |
if (pos > 0) { | |
window.scrollTo(0, pos - 20); | |
} else { | |
window.clearInterval(scrollToTop); | |
} | |
}, 4); | |
this.router.navigate(['/']); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment