-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathindex.html
97 lines (97 loc) · 2.79 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
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chatterbox</title>
<style>
#app > .loading {
font-family: 'JoinedUp';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 60px;
font-weight: bold;
color: black;
display: flex;
align-items: center;
}
#app > .loading > .logo {
width: 120px;
height: 120px;
}
#app > .loading > span {
position: relative;
display: inline-block;
animation: wavyAnimate 1.5s ease-in-out infinite;
}
#app > .loading > .character-0 {
animation-delay: calc(0.1s * 0);
}
#app > .loading > .character-1 {
animation-delay: calc(0.1s * 1);
}
#app > .loading > .character-2 {
animation-delay: calc(0.1s * 2);
}
#app > .loading > .character-3 {
animation-delay: calc(0.1s * 3);
}
#app > .loading > .character-4 {
animation-delay: calc(0.1s * 4);
}
#app > .loading > .character-5 {
animation-delay: calc(0.1s * 5);
}
#app > .loading > .character-6 {
animation-delay: calc(0.1s * 6);
}
#app > .loading > .character-7 {
animation-delay: calc(0.1s * 7);
}
#app > .loading > .character-8 {
animation-delay: calc(0.1s * 8);
}
#app > .loading > .character-9 {
animation-delay: calc(0.1s * 9);
}
@keyframes wavyAnimate {
0%,45%,100%{
transform: translateY(0);
}
90%{
transform: translateY(-4px);
}
}
</style>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?bd3b06d3a76d7ce180ccd213e2170937";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body>
<div id="app">
<div class="loading">
<img class="logo" src="https://chatterbox.gumingchen.icu/resource/static/logo-black.png" />
<span class="character-0">C</span>
<span class="character-1">h</span>
<span class="character-2">a</span>
<span class="character-3">t</span>
<span class="character-4">t</span>
<span class="character-5">e</span>
<span class="character-6">r</span>
<span class="character-7">b</span>
<span class="character-8">o</span>
<span class="character-9">x</span>
</div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>