-
Notifications
You must be signed in to change notification settings - Fork 85
/
index.html
36 lines (36 loc) · 2.17 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>FB Style Menu</title>
<meta id="extViewportMeta" name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, 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="lib/jquery-mobile/jquery.mobile.min.css" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<div id="menu" style="display: none;">
<h3>Menu</h3>
<ul>
<li class="active"><a href="#home" class="contentLink">Home </a></li>
<li><a href="#home" class="contentLink">About </a></li>
<li><a href="#home" class="contentLink">Portfolio </a></li>
<li><a href="#home" class="contentLink">Contact </a></li>
</ul>
</div>
<div data-role="page" class="pages" id="home">
<div data-role="header">
<a href="#"class="showMenu">Menu</a>
<h1>FB Style Menu</h1>
</div><!-- /header -->
<div data-role="content">
<p><strong>Note: You can swipe right/left to show/close menu.</strong></p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div><!-- /content -->
</div><!-- /page -->
<script type="text/javascript" src="lib/jquery/jquery.min.js"></script>
<script type="text/javascript" src="lib/jquery-mobile/jquery.mobile.min.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>