我已经完成了2个与我遇到的问题相关的问题。但在这里我创造了一个更好的例子。请看下面。这些框由Angular ng-bind加载。
请参阅以下代码笔: http://codepen.io/anon/pen/LRPwZP
同样,我将相同的代码段包含在stackoverflow中,但请注意,无法调整分辨率,因此,该示例可能没用。
注意到所需的行为非常重要:
我无法使用以下选项:
(1)
:nth-child(odd) { float: left; }
:nth-child(even) { float: right; }
原因:无用,当您需要超过2列时失败。
(2)我很清楚AngularJS Masonry,我不想增加加载时间,我想用CSS完成这个。
供参考:
以前的问题,同样的问题:
CSS multiple different height float left elements arranged in 2 columns
Flex, AngularJS + Masonry, akoenig/angular-deckgrid and more
亲切的问候, 克里斯,
答案 0 :(得分:0)
为什么不使用flex?
ul{
background-color: #ffeb00;
list-style: none;
padding: 20px;
margin: 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-content: space-around;
}
li{
padding: 35px;
margin: 5px;
background-color: #8056ff;
color: white;
text-align: center;
flex-basis: 40px;
}
<ul>
<li>Box 1</li>
<li>Box 2</li>
<li>Box 3</li>
<li>Box 4</li>
<li>Box 5</li>
<li>Box 6</li>
</ul>
答案 1 :(得分:0)
所以,经过几天测试Masonry,Isotope和一些不同的角度和JQuery模块......大多数需要大量的解决方法才能正常运行......并且在尝试了不同的ng-directives和模块之后用户制作的东西,如有角度的砖石,不使用它。我找到了解决方案:AngularMaterial。 https://material.angularjs.org/latest/layout/options可能很明显,但需要时间来理解你有时会寻找什么。