My Study/JavaScript
[JavaScript] - Scroll
handbefore
2024. 10. 9. 21:00
Scroll은 페이지 로드 완료시 실행해야 정확하다.
<body> 태그 끝나기 전에 넣는게 좋다.
현재 페이지 실제 높이
document.querySelector('html').scrollHeight
document.documentElement.scrollHeight
현재 페이지 보이는 부분 높이
document.querySelector('html').clientHeight
현재 페이지 스크롤양
document.querySelector('html').scrollTop
window.scrollY