我使用window.scroll函數在滾動到頁尾時添加新內容。同時,加載旋轉圖像出現在中心,但很難察覺。我想要完成的是,當我滾動到頁面底部時,加載圖像微調器應該首先出現在最後一個內容的末尾,並延遲10secs,然後才能在隱藏之前緩慢追加(淡入淡出)新內容。在追加內容之前延遲加載圖像
$(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();
});
});
}});
完美的,這也有訣竅,甚至很多更好。 – Chelseawillrecover