-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
76 lines (48 loc) · 1.95 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
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>
<title>Know Bangladesh</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/jquery.mobile-1.3.2.min.css" />
<link rel="stylesheet" href="styles/site.css" />
<script src="scripts/jquery-1.9.1.min.js"></script>
<script src="scripts/jquery.mobile-1.3.2.min.js"></script>
<script src="scripts/jquery.backstretch.min.js"></script>
<script src="scripts/data.js"></script>
<script src="scripts/KnowBangladesh.js"></script>
<script src="scripts/common.js"></script>
</head>
<body>
<div data-role="page" id="mainDiv" >
<div id="background" data-role="content">
<h1 id="title" ></h1>
<div id="desc" ></div>
<!-- Menu -->
<div data-role="popup" id="menuDiv" >
<ul data-role="listview" >
<li id="homeBtn" data-icon="home" ><a>Home</a></li>
<!-- <li id="prevBtn" data-icon="arrow-l" ><a href="#" >Previous</a></li>
<li id="nextBtn" data-icon="arrow-r" ><a href="#" >Next</a></li> -->
<li id="endBtn" data-icon="grid" ><a href="#" >End</a></li>
<li id="historyBtn" ><a href="#" >Jump to History</a></li>
<li id="placesBtn" ><a href="#" >Jump to Places</a></li>
<li id="infoBtn" data-icon="info" ><a href="#" >Slide Info...</a></li>
<li id="aboutBtn" ><a href="#" >About</a></li>
</ul>
</div>
<div data-role="popup" data-overlay-theme="a" data-theme="c" data-dismissible="false" style="max-width:400px;" class="ui-corner-all" id="infoDiv" >
<div data-role="header" data-theme="a" class="ui-corner-top">
<h1>Slide Info</h1>
</div>
<div data-role="content" data-theme="d" class="ui-corner-bottom ui-content">
<p id="infoP"></p>
<a href="#" data-role="button" data-inline="true" data-rel="back" data-theme="b">Ok</a>
</div>
</div>
<div data-role="popup" id="errorDiv" data-theme = "e" >
<p id="errorP" ></p>
</div>
</div>
</div>
</body>
</html>