mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
42 lines
1.1 KiB
HTML
42 lines
1.1 KiB
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Search</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>
|
|
.bar {
|
|
position: relative;
|
|
top: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="platform-ios7">
|
|
|
|
<section class="content overflow-scroll">
|
|
|
|
<header class="bar bar-header item-input-inset">
|
|
<label class="item-input-wrapper">
|
|
<i class="icon ion-search placeholder-icon"></i>
|
|
<input type="search" placeholder="Search">
|
|
</label>
|
|
<button class="button button-clear button-positive">
|
|
Cancel
|
|
</button>
|
|
</header>
|
|
|
|
<div class="bar bar-header item-input-inset">
|
|
<label class="item-input-wrapper">
|
|
<i class="icon ion-ios7-search placeholder-icon"></i>
|
|
<input type="search" placeholder="Search">
|
|
</label>
|
|
<button class="button button-clear">
|
|
取消
|
|
</button>
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</body>
|
|
</html>
|