-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathindex.html
106 lines (106 loc) · 4.25 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
101
102
103
104
105
106
<!--
,----,
,/ .`|
,` .' : ____ ___ .---. ,-.
; ; / ,' , `. ,--.'|_ /. ./| ,--/ /|
.'___,/ ,' ,---. ,-+-,.' _ | | | :,' ,---. .--'. ' ; ,---. __ ,-.,--. :/ |
| : | ' ,'\ ,-+-. ; , || : : ' : ' ,'\ /__./ \ : | ' ,'\ ,' ,'/ /|: : ' /
; |.'; ; / / | ,--.'|' | || ,--.--. .;__,' / / / | .--'. ' \' . / / |' | |' || ' /
`----' | |. ; ,. :| | ,', | |,/ \ | | | . ; ,. : /___/ \ | ' '. ; ,. :| | ,'' | :
' : ;' | |: :| | / | |--'.--. .-. |:__,'| : ' | |: : ; \ \; :' | |: :' : / | | \
| | '' | .; :| : | | , \__\/: . . ' : |__' | .; : \ ; ` |' | .; :| | ' ' : |. \
' : || : || : | |/ ," .--.; | | | '.'| : | . \ .\ ;| : |; : | | | ' \ \
; |.' \ \ / | | |`-' / / ,. | ; : ;\ \ / \ \ ' \ | \ \ / | , ; ' : |--'
'---' `----' | ;/ ; : .' \ | , / `----' : ' |--" `----' ---' ; |,'
'---' | , .-./ ---`-' \ \ ; '--'
`--`---' '---"
2019-04-13 xiejiahe
-->
<!DOCTYPE html>
<html>
<head>
<title>载入中...</title>
<meta charset="utf-8" />
<meta
http-equiv="Cache-Control"
content="no-cache, no-store, must-revalidate"
/>
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="renderer" content="webkit" />
<link rel="icon" href="/logo.svg" />
<meta name="theme-color" content="#000000" />
<meta name="author" content="https://github.com/xjh22222228" />
<style>
@keyframes my-rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes loading-dash {
0% {
stroke-dasharray: 1, 200;
stroke-dashoffset: 0;
}
50% {
stroke-dasharray: 90, 150;
stroke-dashoffset: -40px;
}
100% {
stroke-dasharray: 90, 150;
stroke-dashoffset: -120px;
}
}
.g-loading {
z-index: 999;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
}
.circular {
width: 30px;
height: 30px;
animation: my-rotate 2s linear infinite;
}
.path {
stroke-dasharray: 90, 150;
stroke-dashoffset: 0;
stroke-width: 5;
stroke: #409eff;
stroke-linecap: round;
animation: loading-dash 1.5s ease-in-out infinite;
}
</style>
</head>
<body>
<div id="tomato-work-root">
<div class="g-loading">
<svg viewBox="25 25 50 50" class="circular">
<circle cx="50" cy="50" r="20" fill="none" class="path"></circle>
</svg>
</div>
</div>
<script type="module">
const DEV = import.meta.env.DEV
const _hmt = window._hmt || []
;(function () {
if (DEV) return
const hm = document.createElement('script')
hm.src = 'https://hm.baidu.com/hm.js?cd241f0887f9e49d66903f9ae8c391ea'
const s = document.getElementsByTagName('script')[0]
s.parentNode.insertBefore(hm, s)
})()
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>