当我滚动到页面末尾时,我正在使用 window.scroll 函数来附加新内容。同时,加载微调器图像出现在中心,但几乎没有被注意到。我想要完成的是,当我滚动到页面底部时,加载图像微调器应该首先出现在最后一个内容的末尾并延迟 10 秒,然后它会在隐藏之前缓慢附加(淡入)新内容。
$(window).scroll(function () {
if ($(window).scrollTop() == $(document).height() - $(window).height()) {
$('#loader').delay(1000).show(0);
$.getJSON("http://howtodeployit.com/?json=recentstories", function(data) {
//Set variable for currentPostcount, desiredPosts
newposts = data.posts.slice(currentPostcount, currentPostcount + desiredPosts);
$.each(newposts, function(key, val) {
//Append new contents
$("#postlist").listview().listview('refresh');
$('#loader').hide();
});
});
}});