-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplanes.html
More file actions
23 lines (22 loc) · 762 Bytes
/
planes.html
File metadata and controls
23 lines (22 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Test</title>
<link rel="stylesheet" href="style.css" type='text/css'>
<script src="lib/require.min.js" data-main="planes"></script>
<script src="lib/jquery-1.8.2.min.js"></script>
</head>
<body>
<div id="viewport" style="">
<canvas id="cvsFront" style="position : absolute; z-index: 1;" width="900" height="900"></canvas>
<canvas id="cvsBg" style="position: absolute; z-index: 0;" width="900" height="900"></canvas>
<div id="divNotice">
<span style="">
Your score: 1337<br>Planes collided: 0
</span>
</div>
</div>
<a id="repo" href="https://github.com/PartyLich/planesJS">Back to the repo</a>
</body>
</html>