2021-02-25 21:23:58 +00:00
|
|
|
const scrollToTopButton = document.getElementById('totop');
|
|
|
|
const scrollToTopListener = () => {
|
|
|
|
if (window.scrollY > 0) {
|
2025-04-17 14:22:33 +00:00
|
|
|
scrollToTopButton.className = "button fab show";
|
2021-02-25 21:23:58 +00:00
|
|
|
} else {
|
2025-04-17 14:22:33 +00:00
|
|
|
scrollToTopButton.className = "button fab hide";
|
2021-02-25 21:23:58 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2025-04-17 14:22:33 +00:00
|
|
|
window.addEventListener("scroll", scrollToTopListener);
|