0

嗨,我正在使用 Isotope 和一些图像。我的图像大小不一,从正方形到填满整个容器宽度的全景图像。

我想知道如何在插入新图像后对图像进行同位素重新布局,因为我不希望我的照片之间出现大而难看的间隙。

这是我的代码不起作用

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

感谢您所有的帮助!

4

1 回答 1

0

试试这个代码:

$container.append($( newElements )).isotope('insert', $( newElements ));
于 2013-08-29T08:18:27.843 回答