forked from cs7258/wechat-single-page-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 1.49 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Wechat Single Page Boilerplate</title>
<meta name="viewport" id="viewport" content="width=640,user-scalable=no,target-densitydpi=device-dpi" />
<meta name="keywords" content="微信单页切换模版" />
<meta name="description" content="微信单页切换模版" />
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-touch-fullscreen" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<div id="wrap">
<div class="view view1">
</div><!-- end view -->
<div class="view view2">
</div><!-- end view -->
<div class="view view3">
</div><!-- end view -->
<span class="arrow flash" style="display:none;"></span>
</div><!-- wrap end -->
<div id="sound" class="off" style="display:none;"></div>
<div id="loader">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div><!-- loader end -->
<script src="js/zepto.min.js"></script>
<script src="js/config.js?v=1"></script>
<script src="js/app.js?v=1"></script>
<script type="text/template" id="template">
<div class="page page1">
</div><!-- page end -->
<div class="page page2">
</div><!-- page end -->
<div class="page page3">
</div><!-- page end -->
<div class="page page4">
</div><!-- page end -->
</script>
</body>
</html>