Isotope alternatives and similar libraries
Based on the "Table/Grid" category.
Alternatively, view Isotope alternatives based on common mentions on social networks and blogs.
-
Freewall
Freewall is a cross-browser and responsive jQuery plugin to help you create grid, image and masonry layouts for desktop, mobile, and tablet... -
floatThead
Fixed <thead>. Doesn't need any custom css/html. Does what position:sticky can't -
Vanilla-DataTables
A lightweight, dependency-free javascript HTML table plugin -
Bootstrap Table
An Extension to the popular Bootstrap framework for creating tables that fit the style of your site with no need for additional markup.
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Isotope or a related project?
README
Isotope
Filter & sort magical layouts
See isotope.metafizzy.co for complete docs and demos.
Install
Download
- isotope.pkgd.js un-minified, or
- isotope.pkgd.min.js minified
CDN
Link directly to Isotope files on unpkg.
<script src="https://unpkg.com/[email protected]/dist/isotope.pkgd.min.js"></script>
<!-- or -->
<script src="https://unpkg.com/[email protected]/dist/isotope.pkgd.js"></script>
Package managers
npm: npm install isotope-layout --save
Bower: bower install isotope-layout --save
License
Commercial license
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
Open source license
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.
Initialize
With jQuery
$('.grid').isotope({
// options...
itemSelector: '.grid-item',
masonry: {
columnWidth: 200
}
});
With vanilla JavaScript
// 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.
<div class="grid"
data-isotope='{ "itemSelector": ".grid-item", "masonry": { "columnWidth": 200 } }'>
<div class="grid-item"></div>
<div class="grid-item"></div>
...
</div>
By Metafizzy ๐๐ป, 2010โ2020
*Note that all licence references and agreements mentioned in the Isotope README section above
are relevant to that project's source code only.