This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (61 loc) · 2.6 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
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Main Game</title>
<meta charset="UTF-8">
<link href="images/shuriken.png" rel="icon"/>
<link href="css/index.css" type="text/css" rel="stylesheet"/>
<script src="js/test.js"></script>
<script src="js/typing.js"></script>
</head>
<body>
<body onload="startSequence();"></body>
<div id = "nothingToSeeHere"></div>
<div id="startGameButton" class="fade" onclick="startGame()">Start Game</div>
<div id="player1Select">
<div id="thisIs1StupidDiv"></div>
<select class="selectBox" id="player1SelectBox">
<option id = "player1Ninja" selected>Ninja</option>
<option id = "player1Mage">Mage</option>
<option id = "player1Brute">Brute</option>
</select>
<br>
<div id="player1ControlsSelect"></div>
<select class="selectBox" id="player1ControlsSelectBox">
<option id = "WASDQE" selected>W A S D Q E</option>
<option id = "ESDFWR">E S D F W R</option>
</select>
</div>
<div id="player2Select">
<div id="thisIs2StupidDiv"></div>
<select class="selectBox" id="player2SelectBox">
<option id = "player2Ninja" selected>Ninja</option>
<option id = "player2Mage">Mage</option>
<option id = "player2Brute">Brute</option>
</select>
<br>
<div id="player2ControlsSelect"></div>
<select class="selectBox" id="player2ControlsSelectBox">
<option id = "ULDR/S" selected>Arrows Slash Shift</option>
<option id = "IJKLUO">I J K L U O</option>
</select>
</div>
<div id="mapSelect">
<div id="wowAnotherDiv"></div>
<select class="selectBox" id="mapSelectBox">
<option id = "normal" selected>Normal</option>
<option id = "inverted">Inverted</option>
<option id = "moving">Moving</option>
<option id = "random">Random</option>
<option id = "colorful">Colorful</option>
<option id = "face">Face</option>
<option id = "empty">Empty</option>
</select></div>
<!--
<div id="sideBox">Wow look I'm a box!</div>
<div id = "sideBox2">Dap</div>
<div id="sideBox2">Wow look I'm another box!</div>
<div id="sideBox3">I should probably hide these divs while in menu</div>
-->
</body>
</html>