Hello stackoverflow我需要帮助,我有300px宽度的块,就像在这个链接:http://vnjs.net/www/project/freewall/example/demo-filter.html并尝试调整窗口大小直到移动,阻止消失...我们怎样才能解决这个问题?我在互联网上冲浪,我在这里找不到问题是我使用的是什么价值:
jQuery(function() {
jQuery(".free-wall").each(function() {
var wall = new freewall(this);;
wall.reset({
selector: '.size320',
animate: true,
cellW: 200,
cellH: 'auto',
onResize: function() {
wall.fitWidth();
}
});
wall.fitWidth();
});
});