forked from shellingfordly/vele-admin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
127 lines (107 loc) · 2.52 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vele Admin</title>
<style>
body,
html {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
#app {
width: 100%;
height: 100%;
}
.app-loading {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
.app-loading-line {
width: 50px;
height: 60px;
margin: auto;
font-size: 10px;
text-align: center;
}
.app-loading-title {
display: flex;
margin-top: 30px;
font-size: 30px;
color: rgba(0, 0, 0, 0.85);
justify-content: center;
align-items: center;
}
.app-loading-line>div {
background-color: #409eff;
height: 100%;
width: 6px;
display: inline-block;
-webkit-animation: stretchdelay 1.2s infinite ease-in-out;
animation: stretchdelay 1.2s infinite ease-in-out;
}
.app-loading-line .app-loading-item2 {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s;
}
.app-loading-line .app-loading-item3 {
-webkit-animation-delay: -1s;
animation-delay: -1s;
}
.app-loading-line .app-loading-item4 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
.app-loading-line .app-loading-item5 {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
@-webkit-keyframes stretchdelay {
0%,
40%,
100% {
-webkit-transform: scaleY(0.4);
}
20% {
-webkit-transform: scaleY(1);
}
}
@keyframes stretchdelay {
0%,
40%,
100% {
transform: scaleY(0.4);
-webkit-transform: scaleY(0.4);
}
20% {
transform: scaleY(1);
-webkit-transform: scaleY(1);
}
}
</style>
</head>
<body>
<div id="app">
<div class="app-loading">
<div class="app-loading-wrap">
<div class="app-loading-line">
<div class="app-loading-item1"></div>
<div class="app-loading-item2"></div>
<div class="app-loading-item3"></div>
<div class="app-loading-item4"></div>
<div class="app-loading-item5"></div>
</div>
<div class="app-loading-title">月影轩管理系统</div>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>