我使用的这段代码比以前的代码要快:
<script type="text/javascript">
$(window).load(function(){
var $wall = $('.posts');
$wall.imagesLoaded(function(){
$wall.masonry({
itemSelector: '.entry',
isAnimated : false
});
});
$wall.infinitescroll({
navSelector : "div#navigation",
nextSelector : "div#navigation a#nextPage",
itemSelector : ".entry",
bufferPx : 2000,
debug : false,
errorCallback: function() {
$('#infscr-loading').fadeOut('normal');
}},
function( newElements ) {
var $newElems = $( newElements );
$newElems.hide();
$newElems.imagesLoaded(function(){
$wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
});
}); $('.posts').show(500);
});
</script> <script>
$.fn.changebackgroundColor = function(msg) {
$("#perma").css("#000"); }; </script>
但是它仍然很慢,帖子加载有一个延迟,我想知道我可以更改什么。我使用3列,总计约1100像素。
最佳答案
从文档:问题可能与bufferPx
属性有关。
bufferPx : 40,
// increase this number if you want infscroll to fire quicker
// (a high number means a user will not see the loading message)
// new in 1.2
// default: 40
如果调整该值没有显着影响,则可能只是加载时间,具体取决于要加载的数据量。
关于javascript - 慢查询infinitescroll对tumblr响应?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24370604/