-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathindex.html
130 lines (118 loc) · 3.7 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
128
129
130
<!DOCTYPE html>
<html lang="en" style="background: rgb(var(--theme-background)) !important">
<head>
<meta charset="UTF-8">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
<meta http-equiv="expires" content="0">
<meta name="description" content="Material UI Vue Material Admin">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<link rel="icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/icon/icon-192.png" sizes="192x192">
<title>Vue Material Admin</title>
</head>
<body style="background: rgb(var(--theme-background)) !important">
<div id="app"></div>
<div class='loading_' id="_loading_">
<div class="la-ball-climbing-dot">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<style>
.loading_ {
width: 100%;
height: 100%;
position: fixed;
background: rgb(var(--theme-background));
z-index: 999;
left: 0;
top: 0;
}
.loading_.hide {
display: none;
}
.la-ball-climbing-dot {
width: 84px;
height: 64px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -42px;
margin-top: -32px;
transition: 0.3s;
}
.la-ball-climbing-dot>div {
position: relative;
box-sizing: border-box;
}
.la-ball-climbing-dot>div {
display: inline-block;
float: none;
background-color: #7F85F9;
border: 0 solid #7F85F9;
}
.la-ball-climbing-dot>div:nth-child(1) {
position: absolute;
bottom: 32%;
left: 8%;
width: 44px;
height: 44px;
border-radius: 100%;
transform-origin: center bottom;
animation: jumpA 0.6s ease-in-out infinite;
}
.la-ball-climbing-dot>div:not(:nth-child(1)) {
position: absolute;
top: 0;
right: 0;
width: 44px;
height: 4px;
border-radius: 0;
transform: translate(60%, 0);
animation: steps 1.8s linear infinite;
}
.la-ball-climbing-dot>div:not(:nth-child(1)):nth-child(2) {
animation-delay: 0ms;
}
.la-ball-climbing-dot>div:not(:nth-child(1)):nth-child(3) {
animation-delay: -600ms;
}
.la-ball-climbing-dot>div:not(:nth-child(1)):nth-child(4) {
animation-delay: -1200ms;
}
@keyframes steps {
0% {
top: 0;
right: 0;
opacity: 0;
}
50% {
opacity: 1;
}
100% {
top: 100%;
right: 100%;
opacity: 0;
}
}
@keyframes jumpA {
0% { transform: scale(1, 0.7); }
20% { transform: scale(0.7, 1.2); }
40% { transform: scale(1, 1); }
50% { bottom: 125%; }
46% { transform: scale(1, 1); }
80% { transform: scale(0.7, 1.2); }
90% { transform: scale(0.7, 1.2); }
100% { transform: scale(1, 0.7); }
}
</style>
<script type="module" src="/src/main.ts">
</script>
</body>
</html>