一. 安裝html
bower install --save angular-deckgridgit
添加代碼到你的HTMLgithub
angular.module('your.module', [
'akoenig.deckgrid']);
二. 代碼使用數據結構
定義聲明:設計
定義數據結構:code
$scope.photos = [
id: 'p1', 'title': 'A nice day!', src: "http://lorempixel.com/300/400/",
id: 'p2', 'title': 'Puh!', src: "http://lorempixel.com/300/400/sports",
id: 'p3', 'title': 'What a club!', src: "http://lorempixel.com/300/400/nightlife"];
定義cardtemplate:htm
爲了更好的設計響應式的頁面,你能夠選擇使用以下來代碼來定義不一樣設備或者顯示器上的展現行爲:bower
@media screen and (max-width: 480px){
.deckgrid[deckgrid]::before {
content: '1 .column.column-1-1';
}rem
.deckgrid .column-1-1 { width: 100%; }
}
所有搞定!查看具體的演示效果,請點擊以下地址!相信若是你須要在angular.js中生成瀑布流效果的話,這個輕量級的模塊是個不錯選擇!it
下載:https://github.com/akoenig/angular-deckgrid
演示:http://akoenig.github.io/angular-deckgrid