Last active
March 4, 2024 08:09
-
-
Save mbparvezme/9a14690264e6fc66d92fa0c4ee8d49bc to your computer and use it in GitHub Desktop.
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
// Button/Link: #backToTopBtn | |
document.getElementById('backToTopBtn').addEventListener('click', () => { | |
var start = window.pageYOffset, startTime = null | |
let step = (timestamp) => { | |
if (!startTime) startTime = timestamp | |
var progress = timestamp - startTime, | |
percentage = Math.min(progress / 1000, 1) | |
window.scrollTo(0, start * (1 - percentage)) | |
if (progress < 1000) window.requestAnimationFrame(step) | |
} | |
window.requestAnimationFrame(step) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment