스크롤이 바닥까지 내려왔는지 확인하는 스크립트

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
  }
};

평점을 남겨주세요
평점 : 2.5
총 투표수 : 1