• This repository has been archived on 15/May/2019
  • Stars
    star
    1,794
  • Rank 25,900 (Top 0.6 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 9 years ago
  • Updated about 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

📏 Minimal 2kb zero dependency cascading grid layout

Minigrid

Minigrid is a minimal 2kb zero dependency cascading grid layout.

Website & Documentation: http://alves.im/minigrid.

Demo

There's a simple example on jsbin.

Installation

Using NPM

npm install minigrid --save

Or 1998 script tag from unpkg:

<script src="https://unpkg.com/[email protected]/dist/minigrid.min.js"></script>

Usage

It works on a grid container with a group of grid items.

<div class="cards">
  <div class="card"></div>
  <div class="card"></div>
  <div class="card"></div>
</div>

Then:

var grid = new Minigrid({
  container: '.cards',
  item: '.card',
  gutter: 6
});
grid.mount();

Limitation

Minigrid was built having in mind "cards" with same width and different heights. If your cards have different width sizes or you need more power Minigrid might not be right for you.

Contributing

Plese see CONTRIBUTING.

License

MIT © 2016 Henrique Alves