CHANGE use scrolllistener only when site is 1.5 times the screen size
This commit is contained in:
parent
a2e23623d6
commit
e9271c3ef1
1 changed files with 13 additions and 12 deletions
|
@ -1,8 +1,8 @@
|
|||
window.onload = (event) => {
|
||||
if ((document.documentElement.scrollHeight / window.screen.availHeight ) > 1.5) {
|
||||
window.addEventListener("scroll", () => {
|
||||
var height = document.documentElement.scrollHeight;
|
||||
if ((height / window.screen.availHeight ) > 1.5) {
|
||||
var winScroll = document.body.scrollTop || document.documentElement.scrollTop;
|
||||
height = height - document.documentElement.clientHeight;
|
||||
var height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
|
||||
var scrolled = (winScroll / height) * 100;
|
||||
document.getElementById('progress').style.width = scrolled + "%";
|
||||
|
||||
|
@ -11,5 +11,6 @@ window.addEventListener("scroll", () => {
|
|||
if ((window.scrollY > 0 && !toTop.classList.contains("show")) || (window.scrollY <= 0 && toTop.classList.contains("show"))) {
|
||||
toTop.classList.toggle("show");
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue