-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (64 loc) · 1.82 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
<!DOCTYPE html>
<html>
<head>
<title>Lost Island</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8" />
<link href='./styles/roboto.css' rel='stylesheet'>
<link href="./styles/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="heading">
<h1>Lost Island</h1>
</div>
<div id="controll">
<div id="controllHelp">
<table>
<tr>
<td>H</td>
<td>-</td>
<td>Hilfe</td>
</tr>
</table>
</div>
<div id="controllShow" style="display: none;">
<table>
<tr>
<td>W, A, S, D</td>
<td>-</td>
<td>Bewegen</td>
</tr>
<tr>
<td>Leertaste</td>
<td>-</td>
<td>Springen</td>
</tr>
<tr>
<td>Shift</td>
<td>-</td>
<td>Laufen</td>
</tr>
<tr>
<td>E</td>
<td>-</td>
<td>Interagieren</td>
</tr>
<tr>
<td>Maus</td>
<td>-</td>
<td>Umschauen</td>
</tr>
</table>
</div>
</div>
<div id="scene-container">
<div id="spinner" class="spinner" style="display: none;"></div>
<div id="info">⌖</div>
</div>
</body>
<script type="importmap">
{ "imports": { "three": "./lib/three/build/three.module.js" } }
</script>
<script async src="./lib/es-module-shims.js"></script>
<script type="module" src="./src/main.js"></script>
</html>