我的对象列表是如此初始化:
$( function() {
var $container = $('div.hikashop_products');
$container.isotope({
itemSelector: '.hikashop_product',
transformsEnabled : false,
columnWidth: 27.3 + '%',
layoutMode: 'masonry'
});
});
我尝试使用此行 columnWidth解决此问题:27.3 +'%' ,但这不是解决方案。
在开始时对象是真正排序的:
如果我滚动然后我看到我的列表被打破:http://prntscr.com/4iy7j2
我在这里做错了什么?