Filter & sort magical layouts http://isotope.metafizzy.co
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
David DeSandro d59de5d360 examples.css -> sandbox.css 10 years ago
dist build v2.1.1; 10 years ago
js move UMD to top 10 years ago
sandbox examples.css -> sandbox.css 10 years ago
test update Outlayer to v1.4.0; add fizzy-ui-utils 10 years ago
.gitignore get browserify sandbox working 10 years ago
.jshintrc update Outlayer to v1.4.0; add fizzy-ui-utils 10 years ago
CONTRIBUTING.mdown add Support and Pull requests to contrib; 11 years ago
Gruntfile.js build dist/ file with Grunt 11 years ago
README.mdown add back js-isotope to html init 10 years ago
bower.json update Outlayer to v1.4.0; add fizzy-ui-utils 10 years ago
changelog.md build v2.1.1; 10 years ago
package.json update Outlayer to v1.4.0; add fizzy-ui-utils 10 years ago

README.mdown

Isotope

Filter & sort magical layouts

See isotopejs.com for complete docs and demos.

Install

A packaged source file includes everything you need to use Isotope.

If you are cool with the command line...

Install with Bower: bower install isotope

Install with npm: npm install isotope-layout

License

Isotope may be used in commercial projects and applications with the one-time purchase of a commercial license. If you are paid to do your job, and part of your job is implementing Isotope, a commercial license is required.

http://isotope.metafizzy.co/license.html

For non-commercial, personal, or open source projects and applications, you may use Isotope under the terms of the GPL v3 License. You may use Isotope for free.

Initialize

In JavaScript

// jQuery
$('#container').isotope({
  // options...
  itemSelector: '.item',
  masonry: {
    columnWidth: 200
  }
});
// vanilla JS
var container = document.querySelector('#container');
var iso = new Isotope( container, {
  // options...
  itemSelector: '.item',
  masonry: {
    columnWidth: 200
  }
});

In HTML

Add a class of js-isotope to your element. Options can be set in JSON in data-isotope-options.

<div id="container" class="js-isotope"
  data-isotope-options='{ "itemSelector": ".item", "masonry": { "columnWidth": 200 } }'>
  <div class="item"></div>
  <div class="item"></div>
  ...
</div>

Support

CodersClan has a dedicated support forum for Isotope, where you can get personal support from experienced developers.

Get support on CodersClan


By Metafizzy