我在一个页面中有多个同位素容器。我可以用ajax将新项目加载到每个容器中,但当我尝试在使用imagesLoaded插件加载图像后重新布局项目时,它只适用于最后一个容器。
一旦我通过ajax获得项目,我的代码如下:
//Get all the items
var $new_items = $($items).filter('.post-grid-item'),
slugs = {};
// check items and save slugs (containers ids)
$new_items.each(function(){
var sl =$(this).attr('data-slug');
slugs[sl] = '';
});
// loop for each unique id
for (var new_slug in slugs) {
// I insert the items into the isotope container
$('.posts-grid.'+new_slug).isotope('insert', $new_items.filter('[data-slug='+ new_slug +']') );
// I attached imagesloaded event to container to relayout once images are loaded
$('.posts-grid.'+new_slug).imagesLoaded( function() {
// Only runs on last container id - why?¿?¿
$('.posts-grid.'+new_slug).isotope('reLayout');
$('.posts-grid.'+new_slug).isotope('reloadItems');
});
}
似乎imagesLoaded只挂接到最后一个容器中,不知道为什么。我没有可共享的实时链接,很抱歉
再一次,在写下我在Stackoverflow中面临的问题,并从不同的角度看待它之后,我找到了解决方案。
我将在所有同位素容器的所有图像加载后只调用一次,而不是调用多个图像加载实例。基本上,我四处移动,比如:
//Get all the items
var $new_items = $($items).filter('.post-grid-item'),
slugs = {};
// check items and save slugs (containers ids)
$new_items.each(function(){
var sl =$(this).attr('data-slug');
slugs[sl] = '';
});
// loop for each unique id
for (var new_slug in slugs) {
// I insert the items into the isotope container
$('.posts-grid.'+new_slug).isotope('insert', $new_items.filter('[data-slug='+ new_slug +']') );
}
// All images in all isotopes containers are loaded
$('.container.section-content').imagesLoaded( function() {
//loop again in container and relayout
for (var new_slug in slugs) {
$('.posts-grid.'+new_slug).isotope('reLayout');
$('.posts-grid.'+new_slug).isotope('reloadItems');
}
});