请帮助解决问题。对于密集的包装块,我使用了一种流行的插件砌块。
我的结果code无效。但我使用了documentation
中描述的方法$('#container').masonry({
itemSelector: '.box',
// set columnWidth a fraction of the container width
columnWidth: function( containerWidth ) {
return containerWidth / 5;
}
});
的CSS:
#container{
max-width: 1000px;
margin: 0 auto;
overflow: hidden;
}
#container .item{
width: 33.3%;
background: red;
float: left;
}
答案 0 :(得分:0)
您的小提琴引用了masonry v3库。
对于此语法(http://jsfiddle.net/6ashzfo6/4/):
$('#container').masonry({
itemSelector: '.box',
// set columnWidth a fraction of the container width
columnWidth: function( containerWidth ) {
return containerWidth / 5;
}
});
使用您链接到的文档中的v2.1.08。