Compare commits

..

2 commits

View file

@ -1,12 +1,16 @@
window.addEventListener("scroll", () => { window.onload = (event) => {
var winScroll = document.body.scrollTop || document.documentElement.scrollTop; if ((document.documentElement.scrollHeight / window.screen.availHeight ) > 1.5) {
var height = document.documentElement.scrollHeight - document.documentElement.clientHeight; window.addEventListener("scroll", () => {
var scrolled = (winScroll / height) * 100; var winScroll = document.body.scrollTop || document.documentElement.scrollTop;
document.getElementById('progress').style.width = scrolled + "%"; var height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
var scrolled = (winScroll / height) * 100;
document.getElementById('progress').style.width = scrolled + "%";
const toTop = document.getElementById('totop'); const toTop = document.getElementById('totop');
if ((window.scrollY > 0 && !toTop.classList.contains("show")) || (window.scrollY <= 0 && toTop.classList.contains("show"))) { if ((window.scrollY > 0 && !toTop.classList.contains("show")) || (window.scrollY <= 0 && toTop.classList.contains("show"))) {
toTop.classList.toggle("show"); toTop.classList.toggle("show");
}
});
} }
}); }