我正在尝试安排几个动态多尺寸的 DIV 以适合容器。根据 stackoverflow 中的成员建议,我正在尝试利用 jquery masonry 来完成我的工作。但我有如下所述的问题。
他们在使用 jquery masonry 解决这个问题时有什么特别的技巧吗?我阅读了他们的文档,但我肯定错过了一些东西。
如果有人可以提供帮助,将不胜感激。
HTML 代码:
<div class="blockscont">
<div class="blocks" style="width:200px;height:200px">A</div>
<div class="blocks" style="width:400px;height:400px">B</div>
<div class="blocks" style="width:200px;height:200px">C</div>
<div class="blocks" style="width:200px;height:200px">D</div>
<div class="blocks" style="width:200px;height:200px">E</div>
<div class="blocks" style="width:200px;height:200px">F</div>
<div class="blocks" style="width:600px;height:200px">G</div>
<div class="blocks" style="width:200px;height:200px">H</div>
<div class="blocks" style="width:200px;height:200px">I</div>
<div class="blocks" style="width:400px;height:200px">J</div>
</div>
JQUERY砌体:
$(function() {
$(window).load(function(){
$('#blockscont').masonry({
itemSelector : '.blocks',
columnWidth : 0
});
});
});
输出: