gpt4 book ai didi

jquery - 为什么同位素不填满这个简单布局中的行?

转载 作者:行者123 更新时间:2023-11-28 18:13:03 24 4
gpt4 key购买 nike

我有一个简单的布局——三个彩色框在代码中一个接一个地跟在后面,所有这些框都设计为填充一个固定宽度的 div。为什么同位素不把蓝色盒子放在绿色盒子旁边?我的目标是让所有的盒子尽可能多地填满空间。

the layout

代码非常简单:

<style>
.video {
width:435px;
height:265px;
margin:20px;
background-color:yellow;
}
.tweet {
width:200px;
height:165px;
background-color:green;
}
.post {
width:206px;
height:260px;
background-color:blue;
}
#iso {
width:970px;
border:solid 1px red;
}
</style>

<div id='iso'>
<div class='b video'></div>
<div class='b tweet'></div>
<div class='b post'></div>
<div class='b video'></div>
<div class='b tweet'></div>
<div class='b post'></div>
<div class='b video'></div>
<div class='b tweet'></div>
<div class='b post'></div>
</div>

$(function () {
$('#iso').isotope({
itemSelector: '.b',
layoutMode: 'masonry'
});
});

可以在这里随意使用它:

http://jsfiddle.net/pnoeric/Jn3UX/4/

最佳答案

尝试使用:

$('#iso').isotope({
itemSelector: '.b',
layoutMode: 'fitRows'
});

我认为这就是您要达到的效果。

fiddle :http://jsfiddle.net/Jn3UX/5/

关于jquery - 为什么同位素不填满这个简单布局中的行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18304392/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com