isotope

WebJar for isotope

License

License

GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

isotope
Last Version

Last Version

3.0.4
Release Date

Release Date

Type

Type

jar
Description

Description

isotope
WebJar for isotope
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/metafizzy/isotope

Download isotope

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bower/isotope/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>isotope</artifactId>
    <version>3.0.4</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/isotope/
implementation 'org.webjars.bower:isotope:3.0.4'
// https://jarcasting.com/artifacts/org.webjars.bower/isotope/
implementation ("org.webjars.bower:isotope:3.0.4")
'org.webjars.bower:isotope:jar:3.0.4'
<dependency org="org.webjars.bower" name="isotope" rev="3.0.4">
  <artifact name="isotope" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='isotope', version='3.0.4')
)
libraryDependencies += "org.webjars.bower" % "isotope" % "3.0.4"
[org.webjars.bower/isotope "3.0.4"]

Dependencies

compile (5)

Group / Artifact Type Version
org.webjars.bower : desandro-matches-selector jar [2.0.0,3)
org.webjars.bower : fizzy-ui-utils jar [2.0.4,3)
org.webjars.bower : outlayer jar [2.1.0,3)
org.webjars.bower : masonry jar [4.1.0,5)
org.webjars.bower : get-size jar [2.0.0,3)

Project Modules

There are no modules declared in this project.

Isotope

Filter & sort magical layouts

See isotope.metafizzy.co for complete docs and demos.

Install

Download

CDN

Link directly to Isotope files on unpkg.

<script src="https://unpkg.com/isotope-layout@3/dist/isotope.pkgd.min.js"></script>
<!-- or -->
<script src="https://unpkg.com/isotope-layout@3/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

org.webjars.bower

Metafizzy

Delightful JS plugins

Versions

Version
3.0.4
3.0.3
3.0.1
3.0.0
2.2.2