在下面的链接中,我想通过添加引导类(和砌体布局模式)
将DIV
s 列表转换为 3 列网格。演示 - twitter 引导程序和同位素span4
$('#grid').on('click', function() {
$('.item').hide().addClass('span4');
$('.item:nth-child(3n+1)').css('margin-left', 0); // remove extra margin-lefts
$('.item').show();
$('#posts').isotope({
itemSelector: '.item',
resizable: false,
animationEngine: 'best-available'
});
});
$(window).smartresize(function() {
$('#posts').isotope('reLayout');
});
但如您所见,第 3 列进入下一行。我尝试减少引导span4
宽度,但这没有任何区别。