-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (31 loc) · 1.14 KB
/
index.html
File metadata and controls
37 lines (31 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HUPERCYBEIIID</title>
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css">
<link rel="stylesheet" href="resources/style.css">
<link rel="icon" href="resources/favicon.ico" type="image/x-icon" />
</head>
<body class="pure-form">
<div id="logo"></div>
<div id="renderer"></div>
<div id="panel">
<input type="range" min="1" max="100" value="50" id="btnSpeed" /><br>
<input type="button" value="Pause" id="btnPause" class="pure-button" />
<input type="button" value="Toggle animation" id="btnAnim" class="pure-button" />
<input type="button" value="Save state" id="btnSave" class="pure-button" />
<input type="button" value="Load state" id="btnLoad" class="pure-button" />
<input type="button" value="Reset" id="btnReset" class="pure-button" />
<div id="status-wrapper">
Status:
<span id="status">OK</span>
</div>
<!-- <br> Speed: -->
</div>
<div id="log"></div>
<script src="js/three.js"></script>
<script src="js/orbitcontrols.js"></script>
<script src="js/main.js"></script>
</body>
</html>