An open API service indexing awesome lists of open source software.

https://github.com/zedwang/angular-waterfall

Note:Only supports versions below 1.6. A responsive waterfall plugin of angular
https://github.com/zedwang/angular-waterfall

Last synced: about 1 year ago
JSON representation

Note:Only supports versions below 1.6. A responsive waterfall plugin of angular

Awesome Lists containing this project

README

          

# angular-waterfall
a responsive waterfall plugin of angular

定列自适应瀑布流指令

# options
* contentWidth(optional) 外层容器宽度,不设则auto
* cols(optional) 指定显示列数,默认6

# example
1.模块注入
```javascript
angular.module('angularWaterfallApp',["ngWaterfall","ui.router"])
```

2.模板

```javascript




  • {{image.summary}}

    {{image.title}}


    {{image.summary}}




  • {{text}}



```

3.controller

```javascript
page++;
$scope.$on("waterfall:loadMore",function(){//滚动自动填充事件
$scope.loadMoreData();
})

```