1 2 3 4 5 6 7 8 9 10 11 12 13
| window.addEventListener('scroll', () => { const totalHeight = document.body.clientHeight || document.documentElement.scrollHeight; const viewHeight = document.documentElement.clientHeight || window.innerHeight; const scrollLength = totalHeight - viewHeight; const scrolledHeight = document.documentElement.scrollTop || document.body.scrollTop; const currentProcess = scrolledHeight / scrollLength; console.log(currentProcess); });
|