-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (114 loc) · 4.76 KB
/
Copy pathindex.html
File metadata and controls
117 lines (114 loc) · 4.76 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
<!--
,----,
,/ .`|
,` .' : ____ ___ .---. ,-.
; ; / ,' , `. ,--.'|_ /. ./| ,--/ /|
.'___,/ ,' ,---. ,-+-,.' _ | | | :,' ,---. .--'. ' ; ,---. __ ,-.,--. :/ |
| : | ' ,'\ ,-+-. ; , || : : ' : ' ,'\ /__./ \ : | ' ,'\ ,' ,'/ /|: : ' /
; |.'; ; / / | ,--.'|' | || ,--.--. .;__,' / / / | .--'. ' \' . / / |' | |' || ' /
`----' | |. ; ,. :| | ,', | |,/ \ | | | . ; ,. : /___/ \ | ' '. ; ,. :| | ,'' | :
' : ;' | |: :| | / | |--'.--. .-. |:__,'| : ' | |: : ; \ \; :' | |: :' : / | | \
| | '' | .; :| : | | , \__\/: . . ' : |__' | .; : \ ; ` |' | .; :| | ' ' : |. \
' : || : || : | |/ ," .--.; | | | '.'| : | . \ .\ ;| : |; : | | | ' \ \
; |.' \ \ / | | |`-' / / ,. | ; : ;\ \ / \ \ ' \ | \ \ / | , ; ' : |--'
'---' `----' | ;/ ; : .' \ | , / `----' : ' |--" `----' ---' ; |,'
'---' | , .-./ ---`-' \ \ ; '--'
`--`---' '---"
2019-04-13 liuzi6612
-->
<!doctype html>
<html>
<head>
<title>Tomato Work</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
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<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="#ffffff" />
<meta name="author" content="https://github.com/liuzi6612" />
<meta name="description" content="TomatoWork" />
<!-- PWA 相关 meta 标签 -->
<link rel="manifest" href="/manifest.webmanifest" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="apple-mobile-web-app-title" content="TomatoWork" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="TomatoWork" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="msapplication-TileImage" content="/pwa-192x192.png" />
<link href="/src/assets/styles/tailwindcss.css" rel="stylesheet" />
<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" src="/src/main.tsx"></script>
</body>
</html>