使用 Isotop/jQUery 将 tumblr 上的帖子与无限滚动功能结合起来
好吧所以 这是在图像加载之前运行脚本的老问题,而且因为它是 tumblr,所以在加载到 DOM 之前无法获取图像尺寸...... http://glorymode.tumblr.com/
$('#thumbnails').infinitescroll({
navSelector : ".next a:last",
nextSelector : ".next a:last",
itemSelector : "#thumbnails .thumb",
bufferPx : 7777,
loadingText: "<span class=\"spectrum\" style=\"diaplay:none\">hold it, cowboy!</span>" },
function(newElements){
//$('#thumbnails').infinitescroll("pause");
//$('.thumb', this).imagesLoaded( function(){
//$(this).isotope({ animationEngine : 'none', itemSelector : '.thumb', layoutMode : 'masonry' });
$(this).isotope( 'appended', $( newElements ), function() { /*$('#thumbnails').infinitescroll("resume")*/ } );
//});
}
);
同位素据说包含 imagesLoaded 插件。 .. 似乎什么也没做 http://isotope.metafizzy.co/docs/help.html#imagesloaded_plugin
任何帮助都会很棒!
Alrigghht so
It's the time old problem of script runs before images load and because it's tumblr, there's no way to get the image dimensions before it's loaded into the DOM...
http://glorymode.tumblr.com/
$('#thumbnails').infinitescroll({
navSelector : ".next a:last",
nextSelector : ".next a:last",
itemSelector : "#thumbnails .thumb",
bufferPx : 7777,
loadingText: "<span class=\"spectrum\" style=\"diaplay:none\">hold it, cowboy!</span>" },
function(newElements){
//$('#thumbnails').infinitescroll("pause");
//$('.thumb', this).imagesLoaded( function(){
//$(this).isotope({ animationEngine : 'none', itemSelector : '.thumb', layoutMode : 'masonry' });
$(this).isotope( 'appended', $( newElements ), function() { /*$('#thumbnails').infinitescroll("resume")*/ } );
//});
}
);
isotope supposedly includes the imagesLoaded plugin... seems to do nothing though http://isotope.metafizzy.co/docs/help.html#imagesloaded_plugin
any assistance would be great!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这个无限滚动回调
您需要在新元素上调用 imagesLoaded 。
Try this for your infinite scroll callback
You need to call imagesLoaded on the new Elements.