스크롤 바닥까지 내리면 페이지 끝! 목차 확인 스크립트 살펴보기
스크롤이 바닥까지 내려왔는지 확인하는 스크립트
window.onscroll = function(ev) {
if ((window.innerHeight + Math.round(window.scrollY)) >= document.body.offsetHeight) {
// you're at the bottom of the page
}
};
window.onscroll = function(ev) {
if ((window.innerHeight + window.pageYOffset) >= document.body.offsetHeight) {
// you're at the bottom of the page
}
};