CSS system alternative to Masonry

时光总嘲笑我的痴心妄想 提交于 2019-12-03 15:01:33

问题


I remember a CSS grid system alternative to Masonry (Vanilla) http://masonry.desandro.com/ . That site was black background and displaying/arranging colored boxes (periodic table elements) . It also had filtering boxes based on their shapes and size (like round, square e.t.c) . It was also using hardware acceleration. I spend a lot of time to find it but no luck. Anyone knows this site?


回答1:


Why not just check the source of its counterpart, Isotope: http://isotope.metafizzy.co/index.html




回答2:


I'm using this. And it works great with Bootstrap. Basically instead of container, I am using WALL:

<style>
.wall {
    width: 100%;
    padding: 0 20px;
    -moz-column-gap: 20px;
    -webkit-column-gap: 20px;
    column-gap: 20px;
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
} 
.wall > .brick {
    display: inline-block;
    width: 100%;
}

@media screen and (min-width:860px) {
    .wall {-moz-column-count: 2; -webkit-column-count: 2; column-count: 2;}
}

@media screen and (min-width:1280px) {
    .wall {-moz-column-count: 3; -webkit-column-count: 3; column-count: 3;}
}

@media screen and (min-width:1700px) {
    .wall {-moz-column-count: 4; -webkit-column-count: 4; column-count: 4;}
}

</style>    

This is designed so bricks must be a minimum of 400px. You can do math and change the min-widths if you don't like 400.




回答3:


I'd try Salvattore, it uses CSS for the configuration and all the design, no need to even touch JavaScript.

http://salvattore.com/




回答4:


Here is another alternative if anyone finds it useful: http://suprb.com/apps/nested/



来源:https://stackoverflow.com/questions/13779512/css-system-alternative-to-masonry

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!