Add Scroll To Top button
This commit is contained in:
parent
cfcfd6cd3e
commit
301efb837f
9 changed files with 90 additions and 12 deletions
|
@ -100,3 +100,15 @@ if (header !== null) {
|
|||
}
|
||||
}, 250));
|
||||
}
|
||||
// Scroll to Top button Toggle
|
||||
//
|
||||
const scroll = document.querySelector(".scroll-up"), rootElement = document.documentElement;
|
||||
|
||||
function handleScroll() {
|
||||
if (rootElement.scrollTop / (rootElement.scrollHeight - rootElement.clientHeight) > 0.4) {
|
||||
scroll.classList.remove("hide");scroll.classList.add("show");
|
||||
} else {
|
||||
scroll.classList.add("hide");scroll.classList.remove("show");
|
||||
}
|
||||
}
|
||||
document.addEventListener("scroll", handleScroll);
|
Loading…
Add table
Add a link
Reference in a new issue