Fork me on GitHub

JS: cookbook

Определение при прокрутке вниз страницы с помощью Javascript

window.onscroll = function()
{
var scrollHeight, totalHeight;
scrollHeight = document.body.scrollHeight;
totalHeight = window.scrollY + window.innerHeight;

if(totalHeight >= scrollHeight)
{
console.log("at the bottom");
}
}

social