mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
60 lines
1.5 KiB
HTML
60 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html ng-app="ionic">
|
|
<head>
|
|
<script src="../../dist/js/ionic.bundle.js"></script>
|
|
<meta charset="utf-8">
|
|
<title>Input: Checkbox</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>
|
|
.content {
|
|
height: 1000px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header class="bar bar-header bar-dark">
|
|
<h1 class="title">Input: Checkbox</h1>
|
|
</header>
|
|
|
|
<main class="content has-header">
|
|
|
|
<ul class="list">
|
|
<li class="item item-checkbox">
|
|
<label class="checkbox">
|
|
<input type="checkbox" checked>
|
|
</label>
|
|
Flux Capacitor
|
|
</li>
|
|
<li class="item item-checkbox">
|
|
<label class="checkbox">
|
|
<input type="checkbox" checked>
|
|
</label>
|
|
1.21 Gigawatts
|
|
</li>
|
|
<li class="item item-checkbox">
|
|
<label class="checkbox">
|
|
<input type="checkbox" checked>
|
|
</label>
|
|
88 MPH
|
|
</li>
|
|
<li class="item item-checkbox">
|
|
<label class="checkbox">
|
|
<input type="checkbox">
|
|
</label>
|
|
Plutonium Resupply
|
|
</li>
|
|
<li class="item item-checkbox item-checkbox-right">
|
|
<label class="checkbox">
|
|
<input type="checkbox">
|
|
</label>
|
|
Right side checkbox
|
|
</li>
|
|
</ul>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|