angular-columnify
v0.1.20
Published
Angular directive that creates balanced columns
Downloads
15
Readme
angular-columnify
Angular directive that creates balanced columns
Usage
Add
hj.columnify
to your app dependenciesAdd
.column
style declaration to your css
.column {
float: left;
width: 50%; /* 50% for two columns, 33.33% for three etc */
}
- Add
hj-columnify
directive to your template, it works just likeng-repeat
<div hj-columnify="item in items">
<div class="box" data-index="{{$index + 1}}">
Content goes here
</div>
</div>
Installation
npm i -S angular-columnify
Demo
http://homerjam.github.io/angular-columnify/