mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
65 lines
1.9 KiB
HTML
65 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html ng-app="ionic">
|
|
<head>
|
|
<script src="../../dist/js/ionic.bundle.js"></script>
|
|
<meta charset="utf-8">
|
|
<title>Cards</title>
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
|
|
<link href="../../dist/css/ionic.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
position: absolute;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header class="bar bar-header bar-dark">
|
|
<h1 class="title">Cards: Item Thumbnail</h1>
|
|
</header>
|
|
|
|
<ion-content class="content has-header">
|
|
|
|
<div class="list card">
|
|
|
|
<div class="item item-avatar">
|
|
<img src="" style="background:black; width: 80px; height: 80px;">
|
|
<h2>.item.item-avatar</h2>
|
|
<p>November 05, 1955</p>
|
|
</div>
|
|
|
|
<div class="item item-thumbnail-left">
|
|
<img src="" style="background:black; width: 80px; height: 80px;">
|
|
<h2>.item.item-thumbnail-left</h2>
|
|
<p>November 05, 1955</p>
|
|
</div>
|
|
|
|
<div class="item item-thumbnail-left item-complex">
|
|
<a class="item-content">
|
|
<img src="" style="background:black; width: 80px; height: 80px;">
|
|
<h2>.item.item-thumbnail-left.item-complex .item-content</h2>
|
|
<p>November 05, 1955</p>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="item item-thumbnail-right">
|
|
<img src="" style="background:black; width: 80px; height: 80px;">
|
|
<h2>.item.item-thumbnail-right</h2>
|
|
<p>November 05, 1955</p>
|
|
</div>
|
|
|
|
<div class="item item-thumbnail-right item-complex">
|
|
<a class="item-content">
|
|
<img src="" style="background:black; width: 80px; height: 80px;">
|
|
<h2>.item.item-thumbnail-right.item-complex .item-content</h2>
|
|
<p>November 05, 1955</p>
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</ion-content>
|
|
|
|
</body>
|
|
</html>
|