Add scroll-to-top button that appears after scrolling 300px

This commit is contained in:
DaleStack 2025-08-01 03:21:28 +08:00
parent 4785d8edc7
commit 8ae2bd3552

View file

@ -1,3 +1,6 @@
// Injects a scroll-to-top button that appears after scrolling down 300px.
// When clicked, it smoothly scrolls the page back to the top.
window.addEventListener("scroll", function () {
const btn = document.getElementById("scrollToTop");
btn.style.display = window.scrollY > 300 ? "block" : "none";