本文介绍了jQuery同位素插件水平滚动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
- 只是希望它根据。我不知道它为什么不起作用。
fiddle - just want it to scroll horizontally according to documentation example. I've no idea why it is not working.
$('#container').isotope({
masonry: {
columnWidth: 240
}
});
推荐答案
您忘记使用 layoutMode 告诉它使用水平布局。
You forgot to use the option layoutMode
that tells it to use the horizontal layout.
$('#container').isotope({
layoutMode: 'masonryHorizontal',
masonryHorizontal: {
rowHeight: 160
},
resizesContainer: false
});
通知:文档似乎也缺少,但提到所有其他选项所以你可以推断它
这篇关于jQuery同位素插件水平滚动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!