如何在同位素布局模式之间切换?

发布于 2024-11-07 18:02:41 字数 545 浏览 3 评论 0原文

大家有两个问题:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

缱绻入梦 2024-11-14 18:02:41

请参阅 http://jsfiddle.net/desandro/dbgFa/

1) 要在初始化后禁用同位素,使用 销毁方法

$('.content').isotope('destroy')

然后通过触发将其重新打开再次同位素

$('.content').isotope( /* options */ )

2)您可以像示例代码一样通过在选项中设置布局模式来更改布局模式。这也会触发重新布局,布局会发生变化。

See http://jsfiddle.net/desandro/dbgFa/

1) To disable Isotope after initializing it, use the destroy method

$('.content').isotope('destroy')

Then turn it back on by triggering Isotope again

$('.content').isotope( /* options */ )

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文