-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.55 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 1.55 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Hexglobus</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="styles.css">
<script src="base64-string.js"></script>
<script src="lz-string.js"></script>
<script src="color.js"></script>
<script src="settings.js"></script>
<script src="controls.js"></script>
<script src="getParameters.js"></script>
<script src="padZero.js"></script>
<script src="hexagon.js"></script>
<script src="prng.js"></script>
<script src="stringHashCode.js"></script>
<script src="canvas.js"></script>
<script src="main.js"></script>
</head>
<body>
<div class="Container">
<div class="Left"><canvas></canvas></div>
<div class="Right">
<h3 style="float:right; margin: 0;"> Status: <input type="text" size="8" id="status" disabled="disabled" /> </h3>
<section id="settings">
<h1 style="margin-top: 0;">Settings</h1>
</section>
<hr />
<section>
<h1>Controls:</h1>
<p>
<b>Movement</b>: <img src="navigationKeys.svg" /><br />
<b>Zoom</b>: +/- keys or mouse scrollwheel. Shift key for fine adjustment.<br />
<b>Scale</b>: S (shift+s) to increase scale (zoom out),
s to decrease scale (zoom in).</br />
</p>
</section>
<hr />
<section>
<a href="https://github.com/VSharapov/hexglobus/issues">
<h1> Known issues </h1>
</a>
<div id="issues"></div>
<script src="githubIssues.js"></script>
</section>
</div>
</div>
<script>
window.onload = main;
</script>
</body>
</html>