Created
April 9, 2017 23:45
-
-
Save Cinemacloud/e82bc4b9f390548ae206f031cc7fb420 to your computer and use it in GitHub Desktop.
Basic Usage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div ng-controller="AppCtrl as appCtrl" ng-cloak="" class="gridListdemoBasicUsage" ng-app="MyApp"> | |
<md-grid-list md-cols-xs="1" md-cols-sm="2" md-cols-md="4" md-cols-gt-md="6" md-row-height-gt-md="1:1" md-row-height="2:2" md-gutter="12px" md-gutter-gt-sm="8px"> | |
<md-grid-tile class="gray" md-rowspan="3" md-colspan="2" md-colspan-sm="1" md-colspan-xs="1"> | |
<md-grid-tile-footer> | |
<h3>#1: (3r x 2c)</h3> | |
</md-grid-tile-footer> | |
</md-grid-tile> | |
<md-grid-tile class="green"> | |
<md-grid-tile-footer> | |
<h3>#2: (1r x 1c)</h3> | |
</md-grid-tile-footer> | |
</md-grid-tile> | |
<md-grid-tile class="yellow"> | |
<md-grid-tile-footer> | |
<h3>#3: (1r x 1c)</h3> | |
</md-grid-tile-footer> | |
</md-grid-tile> | |
<md-grid-tile class="blue" md-rowspan="2"> | |
<md-grid-tile-footer> | |
<h3>#4: (2r x 1c)</h3> | |
</md-grid-tile-footer> | |
</md-grid-tile> | |
<md-grid-tile class="red" md-rowspan="2" md-colspan="2" md-colspan-sm="1" md-colspan-xs="1"> | |
<md-grid-tile-footer> | |
<h3>#5: (2r x 2c)</h3> | |
</md-grid-tile-footer> | |
</md-grid-tile> | |
<md-grid-tile class="green" md-rowspan="2"> | |
<md-grid-tile-footer> | |
<h3>#6: (2r x 1c)</h3> | |
</md-grid-tile-footer> | |
</md-grid-tile> | |
</md-grid-list> | |
</div> | |
<!-- | |
Copyright 2016 Google Inc. All Rights Reserved. | |
Use of this source code is governed by an MIT-style license that can be foundin the LICENSE file at http://material.angularjs.org/HEAD/license. | |
--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('MyApp',['ngMaterial', 'ngMessages', 'material.svgAssetsCache']) | |
.controller('AppCtrl', function($scope) {}); | |
/** | |
Copyright 2016 Google Inc. All Rights Reserved. | |
Use of this source code is governed by an MIT-style license that can be foundin the LICENSE file at http://material.angularjs.org/HEAD/license. | |
**/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular-animate.min.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular-route.min.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular-aria.min.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular-messages.min.js"></script> | |
<script src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/t-114/svg-assets-cache.js"></script> | |
<script src="https://cdn.gitcdn.link/cdn/angular/bower-material/v1.1.3/angular-material.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.gridListdemoBasicUsage md-grid-list { | |
margin: 8px; } | |
.gridListdemoBasicUsage .gray { | |
background: #f5f5f5; } | |
.gridListdemoBasicUsage .green { | |
background: #b9f6ca; } | |
.gridListdemoBasicUsage .yellow { | |
background: #ffff8d; } | |
.gridListdemoBasicUsage .blue { | |
background: #84ffff; } | |
.gridListdemoBasicUsage .purple { | |
background: #b388ff; } | |
.gridListdemoBasicUsage .red { | |
background: #ff8a80; } | |
.gridListdemoBasicUsage md-grid-tile { | |
transition: all 400ms ease-out 50ms; } | |
/* | |
Copyright 2016 Google Inc. All Rights Reserved. | |
Use of this source code is governed by an MIT-style license that can be foundin the LICENSE file at http://material.angularjs.org/HEAD/license. | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://cdn.gitcdn.link/cdn/angular/bower-material/v1.1.3/angular-material.css" rel="stylesheet" /> | |
<link href="https://material.angularjs.org/1.1.3/docs.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment