-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (39 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<title>The FitnessGram Pacer Test Simulator</title>
<style type="text/css">
html, body {
width: 100%;
height: 100%;
margin: 0;
overflow: hidden;
}
canvas {
border: transparent;
width: 100%;
height: 100%;
}
#images {
display: none;
visibility: hidden;
}
</style>
<meta charset="utf-8">
</head>
<body onkeydown="key(event)" onkeyup="move.alreadyPressed = false" onclick="interacted = true">
<canvas id="canvas">
Your browser does not support canvas. :(
</canvas>
<div id="images">
<img src="assets/person-right.png" id="person-right">
<img src="assets/person1-right.png" id="person1-right">
<img src="assets/person2-right.png" id="person2-right">
<img src="assets/person-left.png" id="person-left">
<img src="assets/person1-left.png" id="person1-left">
<img src="assets/person2-left.png" id="person2-left">
<img src="assets/start.png" id="start">
</div>
</body>
<script type="text/javascript" src="javascript.js"></script>
</html>