我正在努力实现在首页上滚动。我希望在用户滚动页面的80-90%(从上到下)之后,他可以通过一些信息观察块(“div”)。我试着这样做,但我的版本不正确。你能告诉我怎么做吗?
window.addEventListener('scroll', function(form) {
if (document.body.scrollHeight * 0.7 < document.documentElement.scrollTop) {
this.showForm(form);
}
}, this, form);