如何在同位素布局模式之间切换?
大家有两个问题:
1)如何打开和关闭同位素?
2) 如何切换布局模式?也就是说,我如何
$('.content').isotope({ itemSelector : '.hentry',
layoutMode : 'cellsByRow',
cellsByRow : { columnWidth : 240, rowHeight : 360 } });
从 this:转到 this:
$('.content').isotope({ itemSelector : '.hentry',
layoutMode : 'masonry'});
通过简单的点击开关 ?有什么想法吗?
谢谢!
Two questions, everybody:
1) How do I toggle Isotope on and off?
2) How do I toggle layout modes? That is, how do I go from this:
$('.content').isotope({ itemSelector : '.hentry',
layoutMode : 'cellsByRow',
cellsByRow : { columnWidth : 240, rowHeight : 360 } });
to this:
$('.content').isotope({ itemSelector : '.hentry',
layoutMode : 'masonry'});
with a simple click switch? Any ideas?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 http://jsfiddle.net/desandro/dbgFa/
1) 要在初始化后禁用同位素,使用 销毁方法
然后通过触发将其重新打开再次同位素
2)您可以像示例代码一样通过在选项中设置布局模式来更改布局模式。这也会触发重新布局,布局会发生变化。
See http://jsfiddle.net/desandro/dbgFa/
1) To disable Isotope after initializing it, use the destroy method
Then turn it back on by triggering Isotope again
2) You would change layout modes just like your example code, by setting the layoutMode in the options. This will also trigger a re-layout and the layout will change.