mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
74 lines
1.4 KiB
HTML
74 lines
1.4 KiB
HTML
|
|
<ion-toolbar><ion-title>Advanced Cards</ion-title></ion-toolbar>
|
|
|
|
|
|
<ion-card>
|
|
|
|
<div class="item">
|
|
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAAAAACH5BAAAAAAALAAAAAABAAEAAAICTAEAOw==">
|
|
</div>
|
|
|
|
|
|
<div class="item item-text-wrap">
|
|
<div class="item-content">
|
|
|
|
<h2 class="card-title">
|
|
Card Title Goes Here
|
|
</h2>
|
|
|
|
<p>
|
|
Keep close to Nature's heart... and break clear away,
|
|
once in awhile, and climb a mountain.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<ion-item actions>
|
|
<button clear>
|
|
<icon name="ion-star"></icon>
|
|
Favorite
|
|
</button>
|
|
<button clear>
|
|
<icon name="ion-reply"></icon>
|
|
Reply
|
|
</button>
|
|
</ion-item>
|
|
|
|
</ion-card>
|
|
|
|
|
|
<ion-card>
|
|
|
|
<div class="item">
|
|
<div class="item-media">
|
|
<img class="avatar" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAAAAACH5BAAAAAAALAAAAAABAAEAAAICTAEAOw==">
|
|
</div>
|
|
<div class="item-content">
|
|
<h2>Card With An Inset Picture</h2>
|
|
<p>Isn't it beautiful</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="item">
|
|
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAAAAACH5BAAAAAAALAAAAAABAAEAAAICTAEAOw==">
|
|
</div>
|
|
|
|
<div class="item item-text-wrap">
|
|
<div class="item-content">
|
|
Keep close to Nature's heart... and break clear away, once in awhile, and climb a mountain.
|
|
</div>
|
|
</div>
|
|
|
|
</ion-card>
|
|
|
|
|
|
<style>
|
|
.avatar {
|
|
width: 80px !important;
|
|
height: 80px;
|
|
}
|
|
img {
|
|
height: 100px;
|
|
}
|
|
</style>
|