Добрый вечер. Скажите пожалуйста, как мне останавливать юзера на месте если он достиг черты?
function populate(event) {
while(true) {
// нижняя граница документа
let windowRelativeBottom = document.documentElement.getBoundingClientRect().bottom
// если пользователь прокрутил достаточно далеко (< 100px до конца)
if (windowRelativeBottom < document.documentElement.clientHeight + 100) {
windowRelativeBottom = windowRelativeBottom - 1
}
}
}
window.addEventListener('scroll', function(e) {
populate()
})