스크롤이 바닥까지 내려왔는지 확인하는 스크립트
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
}
};