-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
30 lines (26 loc) · 900 Bytes
/
game.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
<html>
<head>
<meta charset="utf-8" />
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="https://code.createjs.com/1.0.0/createjs.min.js"></script>
<script type="text/javascript" src="vector.js"></script>
<script type="text/javascript" src="planes/bullet.js"></script>
<script type="text/javascript" src="planes/line.js"></script>
<script type="text/javascript" src="planes/node.js"></script>
<script type="text/javascript" src="planes/player.js"></script>
<script type="text/javascript" src="planes/plane.js"></script>
<script type="text/javascript" src="game.js"></script>
<style>
body {
height: 95%;
}
#demoCanvas {
max-width: 100%;
max-height: 100%;
}
</style>
</head>
<body onload="init();">
<canvas id="demoCanvas" style="background-color: lightblue" width=1920 height=1080></canvas>
</body>
</html>