-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.html
62 lines (55 loc) · 1.49 KB
/
custom.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>xCube</title>
<link href="css/style.css" type="text/css" rel="stylesheet" />
<link rel="icon" type="image/x-icon" href="./img/icon.png">
</head>
<body>
<section id="func-tab">
<div id="logo"><span id="logoText">xCube</span></div> <!-- logo -->
<div id="mode">
<a id="team-mode" href="./index.html">CO-OP Mode</a>
<a id="single-mode" href="./single.html"> Single Mode </a>
<a href="./sandbox.html">Sandbox </a>
<a class="checked">Custom Mode</a>
</div>
<!--mode selection-->
<div id="level">Level</div>
<!--level selection-->
</section>
<!--right side bar-->
<section id="game-area"> </section>
<!--game view-->
<section id="guide-tab">
<div id="hint">
<p class="bold">hints</p>
<p id="hint-text"></p>
<!--hints-->
</div>
<div id="control">
<p class="bold">controls</p>
<p>Zoom out: <span>1</span></p>
<p>Zoom in: <span>2</span></p>
<div id="player1-control">
<p class="bold">Player 1</p>
<p>Jump: <span>W</span></p>
<p>Left: <span>A</span></p>
<p>Right: <span>D</span></p>
</div>
<div id="player2-control">
<p class="bold">Player 2</p>
<p>Jump: <span>↑</span></p>
<p>Left: <span>←</span></p>
<p>Right: <span>→</span></p>
</div>
</div>
<!--controls-->
</section>
<!--left sidebar-->
</body>
<script src="./scripts/drawing.js"></script>
<script src="./scripts/main.js"></script>
<script src="./scripts/custom.js"></script>
</html>