-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (89 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue + TS</title>
<script type="module" crossorigin src="/assets/index-f359d0f0.js"></script>
<link rel="stylesheet" href="/assets/index-981c13c8.css">
</head>
<body>
<div id="stepin-app">
<style>
body {
height: 100vh;
text-align: center;
align-items: center;
background-color: #003f8c;
display: flex;
justify-content: center;
}
.loader {
color: rgb(124, 124, 124);
font-family: "Poppins",sans-serif;
font-weight: 500;
font-size: 25px;
box-sizing: content-box;
height: 40px;
padding: 10px 10px;
display: flex;
border-radius: 8px;
}
.words {
overflow: hidden;
}
.word {
display: block;
height: 100%;
padding-left: 6px;
color: #ffca29;
animation: spin_4991 4s infinite;
}
@keyframes spin_4991 {
10% {
transform: translateY(-105%);
}
25% {
transform: translateY(-100%);
}
35% {
transform: translateY(-205%);
}
50% {
transform: translateY(-200%);
}
60% {
transform: translateY(-305%);
}
75% {
transform: translateY(-300%);
}
85% {
transform: translateY(-405%);
}
100% {
transform: translateY(-400%);
}
}
</style>
<img style="margin-bottom: 8px;" width="64px" src="/vite.svg" />
<div class="loader">
<div>loading</div>
<div class="words">
<span class="word">buttons</span>
<span class="word">forms</span>
<span class="word">switches</span>
<span class="word">cards</span>
<span class="word">buttons</span>
</div>
</div>
<div class="" style="color: rgba(255, 255, 255, 0.35)">首次加载可能较慢,请耐心等待...</div>
</div>
<script>
if (!global) {
var global = globalThis;
}
</script>
</body>
</html>