前端頁面瀑布流如何實現(xiàn)下拉加載更多?
使用瀑布流標簽配合js就能實現(xiàn)頁面下拉加載更多。
瀑布流調用標簽
實現(xiàn)下拉觸發(fā)加載更多的js
<script> //監(jiān)聽滾動事件 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>