-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·47 lines (39 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<title>SwipeViewer</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Sets whether a web application runs in full-screen mode -->
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- Sets the style of the status bar for a web application -->
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- CSS -->
<link href="css/style.css" rel="stylesheet">
<!-- JS -->
<script src="js/libs/zepto.min.js" type="text/javascript"></script>
<script src="js/swipeviewer.js" type="text/javascript"></script>
</head>
<body>
<!-- navigation -->
<div class="prev">
<span>⪡</span>
</div>
<div class="next">
<span>⪢</span>
</div>
<!-- output container -->
<div id="container"></div>
<!-- loader -->
<div id="bowlG">
<div id="bowl_ringG">
<div class="ball_holderG">
<div class="ballG">
</div>
</div>
</div>
</div>
</body>
</html>