# isotope-modulo-columns

> Filter and sort magical layouts

Latest version **2.2.2** (published 2016-03-08) · GPL-3.0 license · 0 weekly downloads

## Install

```sh
npm install isotope-modulo-columns
pnpm add isotope-modulo-columns
yarn add isotope-modulo-columns
bun add isotope-modulo-columns
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: no vulnerabilities; popular repo.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.2.2 |
| Published | 2016-03-08 |
| First published | 2016-03-08 |
| Weekly downloads | 0 |
| License | GPL-3.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 6 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 11094 |
| Author | Metafizzy |
| Maintainers | corza9090 |
| Keywords | DOM, browser, masonry, layout, filter, sort |

## Links

- npm: https://www.npmjs.com/package/isotope-modulo-columns
- Repository: https://github.com/metafizzy/isotope
- Homepage: http://isotope.metafizzy.co
- Issues: https://github.com/metafizzy/isotope/issues
- npm.io page: https://npm.io/package/isotope-modulo-columns

## Dependencies (6)

- [get-size](https://npm.io/package/get-size.md) ~1.2.2
- [outlayer](https://npm.io/package/outlayer.md) ~1.4.1
- [fizzy-ui-utils](https://npm.io/package/fizzy-ui-utils.md) ~1.0.1
- [masonry-layout](https://npm.io/package/masonry-layout.md) ~3.3.0
- [grunt-contrib-uglify](https://npm.io/package/grunt-contrib-uglify.md) ^0.9.1
- [desandro-matches-selector](https://npm.io/package/desandro-matches-selector.md) ~1.0.2

## Alternatives

- [babylon](https://npm.io/package/babylon.md) — 5.1M weekly downloads
- [csscolorparser](https://npm.io/package/csscolorparser.md) — 3.7M weekly downloads
- [expr-eval-fork](https://npm.io/package/expr-eval-fork.md) — 1.5M weekly downloads
- [@leeoniya/ufuzzy](https://npm.io/package/@leeoniya/ufuzzy.md) — 247.7K weekly downloads
- [xml-parser](https://npm.io/package/xml-parser.md) — 78.4K weekly downloads

## Recent versions

- 2.2.2 (latest) — 2016-03-08
- 1.0.0 — 2016-03-08

## README

# Isotope

_Filter & sort magical layouts_

See [isotope.metafizzy.co](https://isotope.metafizzy.co) for complete docs and demos.

## Install

### Download

+ [isotope.pkgd.js](https://unpkg.com/isotope-layout@3/dist/isotope.pkgd.js) un-minified, or
+ [isotope.pkgd.min.js](https://unpkg.com/isotope-layout@3/dist/isotope.pkgd.min.js) minified

### CDN

Link directly to Isotope files on [unpkg](https://unpkg.com).

``` html
<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](https://isotope.metafizzy.co/#commercial-license)

### Open source license

If you are creating an open source application under a license compatible with the [GNU GPL license v3](https://www.gnu.org/licenses/gpl-3.0.html), you may use Isotope under the terms of the GPLv3.

[Read more about Isotope's license](https://isotope.metafizzy.co/license.html).

## Initialize

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
<div class="grid"
  data-isotope='{ "itemSelector": ".grid-item", "masonry": { "columnWidth": 200 } }'>
  <div class="grid-item"></div>
  <div class="grid-item"></div>
  ...
</div>
```

* * *

By [Metafizzy 🌈🐻](https://metafizzy.co), 2010–2020

---
_Source: https://npm.io/package/isotope-modulo-columns · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
