-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (47 loc) · 1.11 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
<!DOCTYPE html>
<html lang="zh-CN" class="layout-menu-light">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>%VITE_APP_TITLE%</title>
</head>
<body>
<div id="app">
<style>
html,
body,
#app {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
overflow: hidden;
}
.index-loader {
height: 4px;
width: 130px;
--c: no-repeat linear-gradient(#409EFF 0 0);
background: var(--c), var(--c), #c6e2ff;
background-size: 60% 100%;
animation: l16 3s infinite;
}
@keyframes l16 {
0% {
background-position: -150% 0, -150% 0
}
66% {
background-position: 250% 0, -150% 0
}
100% {
background-position: 250% 0, 250% 0
}
}
</style>
<div class="index-loader"></div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>