-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.42 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
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" media="screen" href="https://code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css">
</head>
<body>
<div data-role="page" id="p1">
<div data-role="header" data-position="fixed">
<h1>Page 1</h1>
</div>
<button id="test">Click me</button>
<div data-role="footer" data-position="fixed">
<h1>Fixed Footer</h1>
</div>
</div>
<div data-role="page" id="p2">
<div data-role="header" data-position="fixed">
<h1>Page 2</h1>
</div>
<div data-role="footer" data-position="fixed">
<h1>Fixed Footer</h1>
</div>
</div>
<div data-role="page" id="p3">
<div data-role="header" data-position="fixed">
<h1>Page 3</h1>
</div>
<div data-role="footer" data-position="fixed">
<h1>Fixed Footer</h1>
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="https://code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"></script>
<script type="text/javascript" src="public/de.app.js" charset="utf-8"></script>
</body>
</html>