最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to toggle between Isotope's layout modes? - Stack Overflow

programmeradmin4浏览0评论

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!

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!

Share Improve this question edited May 16, 2011 at 20:09 Tomer Lichtash asked May 16, 2011 at 18:28 Tomer LichtashTomer Lichtash 9,26216 gold badges57 silver badges73 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 12

See http://jsfiddle/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.

发布评论

评论列表(0)

  1. 暂无评论