SHARE
TWEET
Untitled
a guest
Jan 6th, 2016
66
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- <md-card flex="none" style="width:250px;" class="md-whiteframe-8dp list-card" layout-padding ng-repeat="list in lists">
- <md-card-header>
- <md-card-header-text>
- <span class="md-title">{{list.name}}</span>
- <span class="md-subhead">15 Items in this list</span>
- </md-card-header-text>
- </md-card-header>
- <!-- 1 item -->
- <md-card-content layout="row" ng-show="list.items.length == 1">
- <div flex="100" style="background-image: url('{{list.items[0].backgroundImage}}');" class="cardImg"></div>
- </md-card-content>
- <!-- 2 items -->
- <md-card-content layout="row" ng-show="list.items.length == 2">
- <div flex="100" style="background-image: url('{{list.items[0].backgroundImage}}');" class="cardImg"></div>
- <div flex="100" style="background-image: url('{{list.items[1].backgroundImage}}');" class="cardImg"></div>
- </md-card-content>
- <!-- 3 items -->
- <md-card-content layout="row" ng-show="list.items.length == 3">
- <div flex="50" style="background-image: url('{{list.items[0].backgroundImage}}');" class="cardImg"></div>
- <div flex="50" layout="column">
- <div flex="100" style="background-image: url('{{list.items[1].backgroundImage}}');" class="cardImg"></div>
- <div flex="100" style="background-image: url('{{list.items[2].backgroundImage}}');" class="cardImg"></div>
- </div>
- </md-card-content>
- <!-- 4 items -->
- <md-card-content layout="row" ng-show="list.items.length > 3">
- <div flex="50" layout="column">
- <div flex="100" style="background-image: url('{{list.items[0].backgroundImage}}');" class="cardImg"></div>
- <div flex="100" style="background-image: url('{{list.items[1].backgroundImage}}');" class="cardImg"></div>
- </div>
- <div flex="50" layout="column">
- <div flex="100" style="background-image: url('{{list.items[2].backgroundImage}}');" class="cardImg"></div>
- <div flex="100" style="background-image: url('{{list.items[3].backgroundImage}}');" class="cardImg"></div>
- </div>
- </md-card-content>
- </md-card>
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.
