我試圖安排幾個動態多尺寸的DIV適合在一個容器中。根據會員建議在這裏在stackoverflow,我想獲得jquery石工的好處,以完成我的工作。但我有問題,如下所述。DIVs之間的空間,甚至唱jquery砌體
使用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
});
});
});
OUTPUT: