mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
40 lines
1.1 KiB
HTML
40 lines
1.1 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: Misc.</h1>
|
|
</header>
|
|
|
|
<div class="content has-header">
|
|
|
|
<p>
|
|
<a class="button disabled button-assertive" href="#">Disabled By ClassName</a>
|
|
<a class="button button-assertive" disabled href="#">Disabled By Attribute</a>
|
|
</p>
|
|
|
|
<hr>
|
|
|
|
<p>
|
|
<input type="submit" class="button button-block button-positive" name="op" value="input element">
|
|
<button class="button button-block button-positive">button element</button>
|
|
<a class="button button-block button-positive">link element</a>
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|