squirrel/static/js/totop.js
2021-02-25 22:23:58 +01:00

10 lines
No EOL
308 B
JavaScript

const scrollToTopButton = document.getElementById('totop');
const scrollToTopListener = () => {
if (window.scrollY > 0) {
scrollToTopButton.className = "totop show";
} else {
scrollToTopButton.className = "totop hide";
}
};
window.addEventListener("scroll", scrollToTopListener);