-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
87 lines (78 loc) · 1.92 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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8" />
<link rel="icon"
href="/favicon.ico" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0" />
<title></title>
</head>
<body>
<div id="app">
<div class="app-loading">
<div class="app-loading__loader"></div>
<div class="app-loading__title">正在加载资源</div>
<div class="app-loading__desc">初次加载需要较长时间 请耐心等待</div>
</div>
<style>
.app-loading {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: #ffffff;
}
.app-loading__loader {
box-sizing: border-box;
width: 32px;
height: 32px;
border: 3px solid transparent;
border-top-color: rgba(0, 0, 0, .65);
border-radius: 50%;
animation: 1.2s loader linear infinite;
position: relative;
}
.app-loading__loader:before {
box-sizing: border-box;
content: '';
display: block;
width: inherit;
height: inherit;
position: absolute;
top: -3px;
left: -3px;
border: 3px solid rgba(0, 0, 0, .25);
border-radius: 50%;
opacity: .5;
}
.app-loading__title {
font-size: 18px;
color: rgba(0, 0, 0, .85);
margin-top: 30px;
}
.app-loading__desc {
font-size: 14px;
color: rgba(0, 0, 0, .65);
margin-top: 8px;
}
@keyframes loader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</div>
<script src="/libs/tinymce/tinymce.min.js"></script>
<script type="module"
src="/src/main.js"></script>
</body>
</html>