Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I recently discovered the masonry and isotope JQuery plugins. They seem to be functionally almost identical and both appear to have the same author. The only obvious difference I can see is the license.

What are the major differences between these 2 (if any) in terms of functionality?

share|improve this question

3 Answers

up vote 52 down vote accepted

You can find answer here:

To some people Isotope would look very similar to the work you had previously done with Masonry; can you explain the main differences between the two?

Isotope has several features that Masonry lacks. Masonry essentially does one thing, placing item elements in a cascading arrangement. Isotope has Masonry’s layout logic built in, but in addition, it also has several other layout modes that can be used to dynamically position elements. You can even develop your own custom layout mode.

As I’ve mentioned, it has filtering and sorting functionality built in. Filtering items is as easy as passing in a jQuery selector:

$('#container').isotope({ filter: '.my-selector' });

Isotope takes advantage of the best browser features out there. Instead of using typical left/top styles positioning, Isotope takes a progressive enhancement approach and uses CSS transforms if supported by the browser. This provides for top-notch performance for top-notch browsers. With hardware acceleration kicking in, animations look silky smooth on WebKit browsers, and even less-powerful devices using iOS. CSS transforms perform better with CSS transitions, which I’ll discuss later.

Another difference is license as @AminAriana pointed out. Masonry is under the MIT license, but Isotope is only free for personal use.

You can buy (25$) Isotope commercial license on this page.

share|improve this answer
6  
Please copy-paste the relevant text from the web-page into your answer (as a quote). The link may die (temporarily or permanently), which would make your answer useless. – Šime Vidas Jan 13 '12 at 20:57
1  
Thanks for tip... – PrimosK Jan 13 '12 at 20:59
6  
In addition, as you alluded to in the question, you should pay attention to the Licensing terms. Masonry is under the MIT license, but Isotope is only free for personal use. People reading the answer may overlook this, so I pointed it out explicitly. – Amin Ariana May 6 '12 at 20:41
Thanks for remark... – PrimosK May 7 '12 at 9:14
3  
yet alot of authors in Themeforest use isotope despite the license. – We are the World Aug 30 '12 at 19:29
show 2 more comments

Thanks for pointing out the license! As we speak, I'm coding something using isotope and it is commercial. Others might be interested to know this: I just checked the Isotope site for pricing and they're only charging $25 and this grants you usage on all future projects.

So, nothing too scary.

share|improve this answer

PrimosK pretty much answared you question, but I just wanted to chime in ...

Isotope is an awesome jQuery plugin. I've used in on multiple sites and even won a bunch of of web design awards for designs based around it.

One of the things I like most about Isotope is how customizable it is. It's well documented and it can do almost anything you can think of like extending it with infinite scroll and use custom layout modes.

You can check out one of the web sites I built with a front end based on Isotope here: http://ahrengot.com/work/skive-festival-website-2012/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.