mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 15:07:13 +08:00
67 lines
1.8 KiB
HTML
67 lines
1.8 KiB
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Input: Toggle</title>
|
|
|
|
<!-- Sets initial viewport load and disables zooming -->
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
<link href="../dist/css/ionic.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
|
|
<header class="bar bar-header bar-dark">
|
|
<h1 class="title">Input: Toggle</h1>
|
|
</header>
|
|
|
|
<div class="content-wrapper">
|
|
|
|
<main class="content has-header">
|
|
|
|
<ul>
|
|
<li class="list-item toggle-item">
|
|
<div class="list-item-content">
|
|
Flux Capacitor
|
|
</div>
|
|
<label class="toggle">
|
|
<input type="checkbox" checked>
|
|
<div class="handle"></div>
|
|
</label>
|
|
</li>
|
|
<li class="list-item toggle-item">
|
|
<div class="list-item-content">
|
|
1.21 Gigawatts
|
|
</div>
|
|
<label class="toggle">
|
|
<input type="checkbox" checked>
|
|
<div class="handle"></div>
|
|
</label>
|
|
</li>
|
|
<li class="list-item toggle-item">
|
|
<div class="list-item-content">
|
|
88 MPH
|
|
</div>
|
|
<label class="toggle">
|
|
<input type="checkbox" checked>
|
|
<div class="handle"></div>
|
|
</label>
|
|
</li>
|
|
<li class="list-item toggle-item">
|
|
<div class="list-item-content">
|
|
Plutonium Resupply
|
|
</div>
|
|
<label class="toggle">
|
|
<input type="checkbox">
|
|
<div class="handle"></div>
|
|
</label>
|
|
</li>
|
|
</ul>
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
<script src="../dist/js/ionic.js"></script>
|
|
|
|
</body>
|
|
</html>
|