-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (125 loc) · 3.65 KB
/
index.html
File metadata and controls
143 lines (125 loc) · 3.65 KB
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
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agile Admin</title>
<meta name="description"
content="AgileAdmin是一个基于Vue3+Element-plus+Java的租户后台权限管理系统,提供了完善的权限体系,让开发者把注意力集中到具体业务当中,降低开发成本,提高项目效率。可以用于网站管理后台、SAAS、CMS、CRM、OA、ERP等,企业和个人都可以免费使用。欢迎上Github提Issues或者PR(需求)。">
<meta name="keywords" content="Agile,Admin, Agile Admin, Vue3, Element-plus, Java, 后台管理">
<style>
body {
margin: 0;
}
#app>.loading {
position: absolute;
inset: 0;
display: flex;
justify-content: center;
align-items: center;
}
#app>.loading>.loading__wrap {
min-width: 380px;
}
#app>.loading h1 {
display: inline-block;
}
#app>.loading span {
top: 20px;
position: relative;
animation: loading 0.3s ease 0s infinite alternate;
font-size: 100px;
color: #409EFF;
text-shadow: 0 1px 0 #337ECC,
0 2px 0 #337ECC,
0 3px 0 #337ECC,
0 4px 0 #337ECC,
0 5px 0 #337ECC,
0 6px 0 #337ECC,
0 7px 0 #337ECC,
0 8px 0 #337ECC,
0 9px 0 #337ECC,
0 10px 10px rgba(0, 0, 0, 0.5);
}
#app>.loading>.loading__wrap>h1:first-child>span:nth-child(1) {
animation-delay: 0.1s;
}
#app>.loading>.loading__wrap>h1:first-child>span:nth-child(2) {
animation-delay: 0.15s;
}
#app>.loading>.loading__wrap>h1:first-child>span:nth-child(3) {
animation-delay: 0.2s;
}
#app>.loading>.loading__wrap>h1:first-child>span:nth-child(4) {
animation-delay: 0.25s;
}
#app>.loading>.loading__wrap>h1:first-child>span:nth-child(5) {
animation-delay: 0.3s;
}
#app>.loading>.loading__wrap>h1:last-child>span:nth-child(1) {
animation-delay: 0.35s;
}
#app>.loading>.loading__wrap>h1:last-child>span:nth-child(2) {
animation-delay: 0.4s;
}
#app>.loading>.loading__wrap>h1:last-child>span:nth-child(3) {
animation-delay: 0.45s;
}
#app>.loading>.loading__wrap>h1:last-child>span:nth-child(4) {
animation-delay: 0.5s;
}
#app>.loading>.loading__wrap>h1:last-child>span:nth-child(5) {
animation-delay: 0.55s;
}
@keyframes loading {
100% {
top: -20px;
text-shadow: 0 1px 0 #337ECC,
0 2px 0 #337ECC,
0 3px 0 #337ECC,
0 4px 0 #337ECC,
0 5px 0 #337ECC,
0 6px 0 #337ECC,
0 7px 0 #337ECC,
0 8px 0 #337ECC,
0 9px 0 #337ECC,
0 50px 25px rgba(0, 0, 0, 0.3);
}
}
</style>
<script>
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?17a6c54f2ed90460475e7b8ad91c88e7";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body>
<div id="app">
<div class="loading">
<div class="loading__wrap">
<h1>
<span>A</span>
<span>g</span>
<span>i</span>
<span>l</span>
<span>e</span>
</h1>
<h1>
<span>A</span>
<span>d</span>
<span>m</span>
<span>i</span>
<span>n</span>
</h1>
</div>
</div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>