我正在尝试使用 Masonry javascript 插件。http://masonry.desandro.com/
是否有必要将容器元素作为 div,难道不是别的吗?像文章等?
我正在尝试使用 Masonry javascript 插件。http://masonry.desandro.com/
是否有必要将容器元素作为 div,难道不是别的吗?像文章等?
是的,您可以使用任何类型的砌体容器。但是,它必须是其正常工作的主要容器。
<article id='masonry'> // main container is article instead of div
<div class='item'></div>
<div class='item'></div>
<div class='item'></div>
</article>
var container = document.querySelector('#masonry');
在这里查看jsFiddle