我想制作一个单页网站,它将有很大的内容.假设它上面有1000张照片.我不希望人们等待5分钟来加载我的页面.所以我想在页面底部添加LOAD MORE按钮.
如何用HTML / CSS / JS做到这一点?
最佳答案
您可以将所有div设置为display:none;首先,然后使用jQuery显示前10个(或者你想要显示多少个):
原文链接:https://www.f2er.com/css/427729.html$(function(){
$("div").slice(0,10).show(); // select the first ten
$("#load").click(function(e){ // click event for load more
e.preventDefault();
$("div:hidden").slice(0,10).show(); // select next 10 hidden divs and show them
if($("div:hidden").length == 0){ // check if any hidden divs still exist
alert("No more divs"); // alert if there are none left
}
});
});