Filter and sort magical layouts
npm install isotope-layout_Filter & sort magical layouts_
See isotope.metafizzy.co for complete docs and demos.
+ isotope.pkgd.js un-minified, or
+ isotope.pkgd.min.js minified
Link directly to Isotope files on unpkg.
`` html`
npm: npm install isotope-layout --save
Bower: bower install isotope-layout --save
If you want to use Isotope to develop commercial sites, themes, projects, and applications, the Commercial license is the appropriate license. With this option, your source code is kept proprietary. Purchase an Isotope Commercial License at isotope.metafizzy.co
If you are creating an open source application under a license compatible with the GNU GPL license v3, you may use Isotope under the terms of the GPLv3.
Read more about Isotope's license.
With jQuery
` js`
$('.grid').isotope({
// options...
itemSelector: '.grid-item',
masonry: {
columnWidth: 200
}
});
With vanilla JavaScript
` js`
// vanilla JS
var grid = document.querySelector('.grid');
var iso = new Isotope( grid, {
// options...
itemSelector: '.grid-item',
masonry: {
columnWidth: 200
}
});
With HTML
Add a data-isotope attribute to your element. Options can be set in JSON in the value.
` html
data-isotope='{ "itemSelector": ".grid-item", "masonry": { "columnWidth": 200 } }'>
...
*
By Metafizzy 🌈🐻, 2010–2018