-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (45 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
48
49
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-title" content="XingCard3.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#fff">
<title>xingcard3.0</title>
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="favicons/apple-touch-icon.png">
<link rel="apple-touch-startup-image" href="favicons/launch.png">
<link rel="stylesheet" href="static/css/spinkit.css">
<style>
.loading {
position: absolute;
top: 50%;
width: 100%;
height: 120px;
margin-top: -80px;
}
.loading .sk-wandering-cubes .sk-cube {
background-color: #3498db;
}
</style>
</head>
<body>
<div id="app"></div>
<div class="loading" v-show="isLoading" id="loading">
<div class="sk-spinner sk-wandering-cubes">
<div class="sk-cube"></div>
<div class="sk-cube sk-cube2"></div>
</div>
</div>
<!-- built files will be auto injected -->
<script>
(function() {
if ('serviceWorker' in navigator) {
// navigator.serviceWorker.register('./sw.js');
navigator.serviceWorker.register('./service-worker.js');
}
})();
</script>
</body>
</html>