前端页面瀑布流如何实现下拉加载更多?
使用瀑布流标签配合js就能实现页面下拉加载更多。
瀑布流调用标签
实现下拉触发加载更多的js
<script>
//监听滚动事件
let timer = null;
document.addEventListener('scroll', function () {
clearTimeout(timer);
//判断是否滚动到 底部
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - 50){
timer = setTimeout(function(){
document.getElementById( 'gengduo').click();
},300)
}
});
</script>