在Isotope Insert,ReLayout之后

时间:2013-08-29 04:14:47

标签: jquery-isotope

嗨我正在使用Isotope和一些图像。我的图像是各种尺寸,从正方形到全景图像,填充容器的整个宽度。

我想知道在插入新图像后我怎么能用同位素重新输出图像,因为我不想在我的照片之间留下大而难看的间隙。

这是我的代码无效

function( newElements ) {
      $container.isotope( 'insert', $( newElements ), function(){
        $container.isotope( 'reLayout'); 
      }); 
    }

感谢您的所有帮助!

1 个答案:

答案 0 :(得分:0)

试试这段代码:

$container.append($( newElements )).isotope('insert', $( newElements ));