-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmenu-2.html
76 lines (71 loc) · 2.99 KB
/
menu-2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iOS7 CSS UI</title>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/demo.css">
</head>
<body ontouchstart="">
<div class="demo"><!-- for demo purposes only -->
<script>document.write('<div class="js">'); // demo only </script>
<!-- The menu is activated by toggling the "in" class. -->
<div class="menu-top in">
<h1 class="menu-top-title">iOS7 CSS UI</h1>
<nav class="menu-top-list">
<a href="alt.html" class="menu-top-list-item icon-twitter">Tweet</a>
<a href="alt.html" class="menu-top-list-item icon-facebook">Like</a>
<a href="alt.html" class="menu-top-list-item icon-google">+1</a>
<a href="alt.html" class="menu-top-list-item icon-pinterest">Pin</a>
</nav>
</div>
<script>document.write('</div>'); // demo only </script>
<div class="app">
<div class="top-bar top-bar-dark">
<h1 class="top-bar-title">Clarity</h1>
<a href="alt.html" class="top-bar-link left icon-only icon-group">Menu</a>
<a href="alt.html" class="top-bar-link right icon-next">Link</a>
</div>
<nav class="top-bar-sub top-bar-sub-dark tabs tabs-three">
<a href="alt.html" class="tabs-link active">Tab 1</a>
<a href="alt.html" class="tabs-link">Tab 2</a>
<a href="alt.html" class="tabs-link">Tab 3 <span class="tabs-counter">1</span></a>
</nav>
<nav class="bottom-bar bottom-bar-five bottom-bar-dark">
<a href="index.html" class="bottom-bar-link icon-home">Home <span class="bottom-bar-counter">2</span></a>
<a href="menu-1.html" class="bottom-bar-link icon-menu">Menu</a>
<a href="form-1.html" class="bottom-bar-link icon-folder">Forms <span class="bottom-bar-counter important">3</span></a>
<a href="list-1.html" class="bottom-bar-link icon-list">Lists</a>
<a href="alt.html" class="bottom-bar-link icon-alt active">Alt</a>
</nav>
<div class="content">
<form class="search-bar">
<input type="search" class="search-bar-input" placeholder="Search">
</form>
<section class="text-block">
<h2>Heading</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit… <a href="alt.html">More</a></p>
</section>
</div>
</div>
</div>
<p class="demo-thanks">
Development by <a href="http://roachhd.com/">Roach Haus</a> for their mobile app
<a href="http://lilmads.parse.com/">Lil Mads and the Gold Skull</a>.
</p>
<script>
// demo only
var js = document.getElementsByClassName('js')[0],
el = document.getElementsByClassName('in')[0];
el.className = el.className.replace(' in', '');
setTimeout(function() {
js.parentNode.insertBefore(el, js);
js.parentNode.removeChild(js);
el.className += ' in';
}, 200);
</script>
</body>
</html>