mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
43 lines
1.3 KiB
HTML
43 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html ng-app="ionic">
|
|
<head>
|
|
<script src="../../dist/js/ionic.bundle.js"></script>
|
|
<meta charset="utf-8">
|
|
<title>Buttons</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">Buttons: <link> block w/ icons</h1>
|
|
</header>
|
|
|
|
<div class="content has-header padding">
|
|
<button class="button">
|
|
<i class="icon ion-loading-c"></i> Loading...
|
|
</button>
|
|
<br />
|
|
<button class="button icon-left ion-home">Home</button>
|
|
<br />
|
|
<button class="button icon-left ion-star button-positive">Favorites</button>
|
|
<br />
|
|
<a class="button icon-right ion-chevron-right button-calm">Learn More</a>
|
|
<br />
|
|
<a class="button icon-left ion-chevron-left button-clear button-dark">Back</a>
|
|
<br />
|
|
<button class="button icon ion-gear-a"></button>
|
|
<br />
|
|
<a class="button button-icon icon ion-settings"></a>
|
|
<br />
|
|
<a class="button button-outline icon-right ion-navicon button-balanced">Reorder</a>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|