我正在尝试使用同位素 ( http://isotope.metafizzy.co ) 和流体布局网格 ( http://unsemantic.com/ ) 来创建站点内容的站点。我希望它完全像这样:http ://www.aarontolley.co.uk/
唯一应该与 aarontolley 站点和我正在创建的站点不同的是元素将具有不同的高度和宽度。
我现在拥有的是以下内容(用于测试,因此是内联样式):
<div id="container" class="grid-container">
<div class="element grid-33" style="margin-bottom:20px;">
<div style="height:150px; background-color:red;">test</div>
</div>
<div class="element grid-33" style="margin-bottom:20px;">
<div style="height:150px; background-color:red;">test</div>
</div>
<div class="element grid-33" style="margin-bottom:20px;">
<div style="height:150px; background-color:red;">test</div>
</div>
<div class="element grid-66" style="margin-bottom:20px;">
<div style="height:300px; background-color:red;">test</div>
</div>
<div class="element grid-33" style="margin-bottom:20px;">
<div style="height:150px; background-color:red;">test</div>
</div>
</div>
<script>
$(function() {
$('#container').isotope();
});
</script>
没有同位素,标记看起来像这样:
启用同位素后,它看起来像这样:
这可能吗?:-)