{"id":18553698,"url":"https://github.com/websemantics/masonry-plus","last_synced_at":"2025-10-18T03:21:46.861Z","repository":{"id":57291672,"uuid":"62480805","full_name":"websemantics/masonry-plus","owner":"websemantics","description":"Extends the masonry plugin (Cascading grid layout library) by David DeSandro to filter and shuffle items ","archived":false,"fork":false,"pushed_at":"2017-03-21T16:36:13.000Z","size":12,"stargazers_count":6,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-13T11:03:23.869Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/websemantics.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-07-03T04:07:17.000Z","updated_at":"2021-01-13T19:50:19.000Z","dependencies_parsed_at":"2022-08-31T00:00:50.245Z","dependency_job_id":null,"html_url":"https://github.com/websemantics/masonry-plus","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/websemantics/masonry-plus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/websemantics%2Fmasonry-plus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/websemantics%2Fmasonry-plus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/websemantics%2Fmasonry-plus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/websemantics%2Fmasonry-plus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/websemantics","download_url":"https://codeload.github.com/websemantics/masonry-plus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/websemantics%2Fmasonry-plus/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261280139,"owners_count":23134904,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T21:18:01.373Z","updated_at":"2025-10-18T03:21:46.764Z","avatar_url":"https://github.com/websemantics.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"```\n                                                                             ─────┬─ ───┼─────┬   ── ─\n╭────┬───┬──╮╭──────╮╭──────╮╭──────╮╭────┬─╮╭───┬──╮╭───╮╭─╮      ╭────╮        ─┼─────┴ ────┼──\n│           │├────  ││  ────┤│   ╭╮ ││      ││      ││   ││ │   ╭──╯    ╰──╮     \n│   ╭╮  ╭╮  ││ ╭╮   ││      ││   ││ ││   ╭╮ ││    ╭─╯│   ╰╯ │   │    ─┼─   │   ─┬─────┬─         ┼──\n│   ││  ││  ││ ╰╯   │├────  ││   ╰╯ ││   ││ ││    │  ├────  │   ╰──╮    ╭──╯    ┼─ ───┼─── ─   \n╰───╯╰──╯╰──╯╰───┴──╯╰──────╯╰──────╯╰───╯╰─╯╰────╯  ╰──────╯      ╰────╯                     ┼─────┼──\n                                                                           ───┴─            ──┴─── ─┴ ─\n ```\n\u003e Extends the [masonry](http://masonry.desandro.com) plugin by David DeSandro to filter and shuffle items.\n\n[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/websemantics/masonry-plus/master/LICENSE) [![GitHub forks](https://img.shields.io/github/forks/websemantics/masonry-plus.svg)](https://github.com/websemantics/masonry-plus/network) [![GitHub stars](https://img.shields.io/github/stars/websemantics/masonry-plus.svg)](https://github.com/websemantics/masonry-plus/stargazers)\n[![Percentage of issues still open](http://isitmaintained.com/badge/open/websemantics/masonry-plus.svg)](http://isitmaintained.com/project/websemantics/masonry-plus \"Percentage of issues still open\") [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/)\n\n#### See it in action @ [PyroCMS Cheatsheet](http://websemantics.github.io/pyrocms-cheatsheet)\n\n## Install\n\nBower\n\n```bash\nBower install masonry-plus\n```\n\nNode\n\n```bash\nnpm install masonry-plus\n```\n\n## Usage\n\nVanilla JavaScript\n\n```js\nvar masonry = new Masonry( '.grid', {'itemSelector': '.column'});\n\n// layout a filtered list of items with 'data-filter' attribute is set to 'books'\nmasonry.layout({filter:'books'});\n\n// shuffle the list of items\nmasonry.layout({shuffle:true});\n\n// show all items\nmasonry.layout({filter:'*'});\n```\n\njQuery\n\n```js\n// layout a filtered list of items with 'data-filter' attribute is set to 'books'\n$('.grid').masonry('layout', {filter:'books'})\n\n// combine filter and shuffle\n$('.grid').masonry('layout', {filter:'books', shuffle:true})\n```\n\n## Support\n\nNeed help or have a question? post at [StackOverflow](https://stackoverflow.com/questions/tagged/masonry-plus+websemantics).\n\n*Please don't use the issue trackers for support/questions.*\n\n*Star if you find this project useful, to show support or simply for being awesome :)*\n\n## Contribution\n\nContributions to this project are accepted in the form of feedback, bugs reports and even better - pull requests.\n\n## License\n\n[MIT license](http://opensource.org/licenses/mit-license.php) Copyright (c) Web Semantics, Inc.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebsemantics%2Fmasonry-plus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebsemantics%2Fmasonry-plus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebsemantics%2Fmasonry-plus/lists"}