Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heimrichhannot/masonry
https://github.com/heimrichhannot/masonry
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/heimrichhannot/masonry
- Owner: heimrichhannot
- Created: 2017-06-20T08:54:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-30T09:44:44.000Z (almost 7 years ago)
- Last Synced: 2023-08-21T11:17:20.164Z (over 1 year ago)
- Language: HTML
- Size: 35.2 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Masonry
> Abandoned! See [heimrichhannot-contao-components/masonry](https://github.com/heimrichhannot-contao-components/masonry)
_Cascading grid layout library_
Masonry works by placing elements in optimal position based on available vertical space, sort of like a mason fitting stones in a wall. You’ve probably seen it in use all over the Internet.
See [masonry.desandro.com](http://masonry.desandro.com) for complete docs and demos.
## Install
### Download
+ [masonry.pkgd.js](https://github.com/desandro/masonry/raw/master/dist/masonry.pkgd.js) un-minified, or
+ [masonry.pkgd.min.js](https://github.com/desandro/masonry/raw/master/dist/masonry.pkgd.min.js) minified### CDN
Link directly to Masonry files on [npmcdn](https://npmcdn.com/).
``` html
```
### Package managers
Bower: `bower install masonry --save`
[npm](https://www.npmjs.com/package/masonry-layout): `npm install masonry-layout --save`
## Initialize
With jQuery
``` js
$('.grid').masonry({
// options...
itemSelector: '.grid-item',
columnWidth: 200
});
```With vanilla JavaScript
``` js
// vanilla JS
// init with element
var grid = document.querySelector('.grid');
var msnry = new Masonry( grid, {
// options...
itemSelector: '.grid-item',
columnWidth: 200
});// init with selector
var msnry = new Masonry( '.grid', {
// options...
});
```With HTML
Add a `data-masonry` attribute to your element. Options can be set in JSON in the value.
``` html
...
```## License
Masonry is released under the [MIT license](http://desandro.mit-license.org). Have at it.
* * *
Made by David DeSandro