-
Notifications
You must be signed in to change notification settings - Fork 167
/
Copy pathindex.html
83 lines (82 loc) · 2.33 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 lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/src/favicon.ico" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="react-antd-admin,react后台管理系统 winme winmee" />
<meta name="keywords" content="react-antd-admin,react后台管理系统 winme winmee" />
<link rel="apple-touch-icon" href="/src/assets/logo/logo192.png" />
<title>react-antd-admin</title>
<style>
.screen {
width: 98vw;
height: 97vh;
display: flex;
justify-content: center;
align-items: center;
}
.loading-container{
position:relative;
width: 32px;
height: 32px;
transform: rotate(45deg);
animation: preloader 1.2s infinite linear;
}
.loading-container i{
width: 12px;
height: 12px;
position:absolute;
background:#1890ff;
border-radius: 100%;
display:block;
transform-origin: 50% 50%;
opacity: .3;
animation: preloader_i 1.2s infinite linear;
}
.loading-container i:nth-child(1){
top: 0;
left: 0;
}
.loading-container i:nth-child(2){
top: 0;
right: 0;
animation-delay: 0.4s;
}
.loading-container i:nth-child(3){
right: 0;
bottom: 0;
animation-delay: 0.8s;
}
.loading-container i:nth-child(4){
bottom: 0;
left: 0;
animation-delay: 1.2s;
}
@keyframes preloader {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@keyframes preloader_i {
0% { opacity: .3; }
50% { opacity: 1; }
100% { opacity: .3; }
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root">
<div class="screen">
<div class="loading-container">
<i></i>
<i></i>
<i></i>
<i></i>
</div>
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>