-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
55 lines (55 loc) · 1.61 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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>白子的基沃托斯骑行大冒险!</title>
<link rel="icon" href="favicon.gif" type="image/gif" />
<link
rel="preload"
href="Build/ShirokoAdventrue.framework.js.unityweb"
as="fetch"
crossorigin
/>
<link
rel="preload"
href="Build/ShirokoAdventrue.wasm.unityweb"
as="fetch"
crossorigin
/>
<link rel="preload" href="Build/ShirokoAdventrue.loader.js" as="script" />
</head>
<body>
<div id="game-container">
<div id="unity-container" class="unity-desktop">
<canvas id="unity-canvas" width="1280" height="720"></canvas>
<div id="unity-loading-bar">
<div id="unity-logo"></div>
<div id="unity-progress-bar-empty">
<div id="unity-progress-bar-full"></div>
</div>
<div id="loading-percentage"></div>
</div>
<div id="unity-footer">
<div class="button primary" id="unity-fullscreen-button">
进入全屏
</div>
<div
class="button"
onclick="window.open('https://blue-archive.io', '_blank')"
>
前往主页
</div>
<div
class="button"
onclick="window.open('https://space.bilibili.com/1413213021', '_blank')"
>
前往bilibili
</div>
</div>
</div>
</div>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>