mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
54 lines
1.4 KiB
HTML
54 lines
1.4 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 Avatar</h1>
|
|
</header>
|
|
|
|
<div class="content has-header">
|
|
|
|
<div class="list card">
|
|
|
|
<div class="item item-avatar">
|
|
<img src="" style="background:black; width: 40px; height: 40px;">
|
|
<h2>Pretty Hate Machine</h2>
|
|
<p>Nine Inch Nails</p>
|
|
</div>
|
|
|
|
<div class="item item-avatar item-complex">
|
|
<a class="item-content">
|
|
<img class="item-img" src="" style="background:black; width: 40px; height: 40px;">
|
|
<h2>Pretty Hate Machine, .item-complex</h2>
|
|
<p>Nine Inch Nails</p>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="item item-image">
|
|
<img src="" style="background:black; width: 100px; height: 100px;">
|
|
</div>
|
|
|
|
<a href="#" class="item item-icon-left">
|
|
<i class="icon ion-music-note"></i>
|
|
Start listening
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|