-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (72 loc) · 1.78 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
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<meta name="description" content="管理后台,管理后台系统,后台" />
<meta name="keywords" content="管理后台,管理后台系统,后台" />
<title>数据监控</title>
<style>
html,
body {
position: relative;
height: 100%;
margin: 0;
padding: 0;
}
.loadingWrap {
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 2;
background: #fff;
}
.loadingWrap-animate {
animation:fadeOut 1.5s ease-in-out both;
}
.loadingWrap .loading {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: url("./static/loading/timg.gif") no-repeat;
background-size: 100px 100px;
width: 100px;
height: 100px;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
</style>
</head>
<body>
<div class="loadingWrap" id="loadingWrap">
<div class="loading"></div>
</div>
<div id="app"></div>
<!-- built files will be auto injected -->
<script src="https://cdn.bootcss.com/vuex/3.0.1/vuex.min.js"></script>
<script src="https://cdn.bootcss.com/vue-router/3.0.1/vue-router.min.js"></script>
<script src="https://cdn.bootcss.com/axios/0.17.1/axios.min.js"></script>
</body>
</html>