-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (58 loc) · 3.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hanipure Chart Editor</title>
<link rel="icon" href="/assets/favicon.jpg" type="image/jpg"/>
<link rel="stylesheet" href="/style.css" type="text/css"/>
<link rel="stylesheet" href="/sonolus.css" type="text/css"/>
<script src="/index.js"></script>
<script src="/components/editor.js"></script>
<script src="/third-party/pako.min.js"></script>
<script src="/third-party/jszip.min.js"></script>
<script src="/third-party/FileSaver.min.js"></script>
<script src="/third-party/crypto-js.js"></script>
<script src="/third-party/srp.js"></script>
</head>
<body>
<nav class="flex" id="toggleRoot" style="opacity: 0;"></nav>
<div class="flex">
<fileSystem class="flex" id="fileRoot">
<fileSystemTitle>
资源管理器
</fileSystemTitle>
</fileSystem>
<container class="flex" id="container">
</container>
</div>
<div id="loading" style="position: absolute; left: 0px; top: 0px; width: 100%; height: 100vh; background-color: white; justify-content: center; align-items: center; flex-direction: column;" class="flex">
<style>
@keyframes rotate {
0% {
transform: rotate(0deg);
}
50% {
transform: rotate(180deg);
}
100% {
transform: rotate(360deg);
}
}
#rotate-svg {
width: 39px; height: 39px;
animation: rotate 2s linear infinite;
margin-bottom: 13px;
}
#loading {
transition: opacity 0.5s ease-in-out;
}
</style>
<div id="rotate-svg">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" height="3em" width="3em" style="fill: red">
<path d="M512 1024c-69.1 0-136.2-13.5-199.3-40.2C251.7 958 197 921 150 874c-47-47-84-101.7-109.8-162.7C13.5 648.2 0 581.1 0 512c0-19.9 16.1-36 36-36s36 16.1 36 36c0 59.4 11.6 117 34.6 171.3 22.2 52.4 53.9 99.5 94.3 139.9 40.4 40.4 87.5 72.2 139.9 94.3C395 940.4 452.6 952 512 952c59.4 0 117-11.6 171.3-34.6 52.4-22.2 99.5-53.9 139.9-94.3 40.4-40.4 72.2-87.5 94.3-139.9C940.4 629 952 571.4 952 512c0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 0 0-94.3-139.9 437.71 437.71 0 0 0-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.2C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3s-13.5 136.2-40.2 199.3C958 772.3 921 827 874 874c-47 47-101.8 83.9-162.7 109.7-63.1 26.8-130.2 40.3-199.3 40.3z"/>
</svg>
</div>
<h2 style="color: red">Loading...</h2>
</div>
</body>
</html>