-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
69 lines (68 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache,must-revalidate">
<meta content="telphone=no,address=no" name="format-detection">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<title>淘米淘webapp</title>
<!-- IE8,IE9 SUPPORT HTML5 AND CSS3 -->
<!--[if lte IE 8]>
<script type="text/javascript" scr="static/lib/selectivizr/selectivizr-min.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script src="https://cdn.bootcss.com/livingston-css3-mediaqueries-js/1.0.0/css3-mediaqueries.min.js"></script>
<script src="https://cdn.bootcss.com/html5shiv/r29/html5.min.js"></script>
<![endif]-->
<!--Import materialize.css-->
<style type="text/css">
.loading-wrap .mask {
position: absolute;
width: 60px;
height: 60px;
left: 50%;
top: 50%;
margin-left: -30px;
margin-top: -30px;
text-align: center;
}
.loading-wrap .mask img{
width: 40px;
background: rgba(0,0,0,0.4);
padding: 10px;
border-radius: 5px;
}
.loading-wrap {
position: fixed;
top: 0;
z-index: 10000;
width: 100%;
height: 100%;
}
</style>
<link type="text/css" rel="stylesheet" href="/static/lib/materialize/css/materialize.css" media="screen,projection"/>
<link rel="stylesheet" href="/static/css/app.css">
</head>
<body>
<noscript>
<div style="width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;">
您需要开启 javascript 功能才能浏览本webapp
</div>
</noscript>
<div class="loading-wrap"><div class="mask"><img src="/static/imgs/oval.svg"/></div></div>
<div id="app"></div>
<script src="/static/lib/jquery/jquery.min.js"></script>
<!-- <script src="static/lib/materialize/js/materialize.min.js"></script> -->
<script src="/static/lib/hammer/hammer.min.js"></script>
<!-- built files will be auto injected -->
<script type="text/javascript">
$(document).ready(function(){
$(".loading-wrap").hide();
})
</script>
</body>
</html>