-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 877 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Elmo_Purescript's Simple Slider Puzzle</title>
<style>
.picture {
border: 1px solid black;
}
</style>
</head>
<body>
<div id="title">
<h1>Elmo_Purescript's Simple Slider Puzzle</h1>
</div>
<div>
<p id="moves_requested">
<input style="text-transform: uppercase" type="text" name="input_moves" id ="input_moves" size="80" />
</p>
<input type="radio" name="input_mode" checked > Input Mode
<br>
<input type="radio" name="playback_mode" > Playback Mode
</div>
<div id="main" class="main" tabindex="0" onkeyup="handleOnKeyUp(event)" >
<canvas id="puzzle" width="480px" height="480px"></canvas>
</div>
<p id="moves_made">
</p>
<div id="target" class="main">
<canvas id="puzzle_final" width="480px" height="480px"></canvas>
</div>
<script src="slider.js"></script>
</body>
</html>