-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (18 loc) · 853 Bytes
/
index.html
File metadata and controls
23 lines (18 loc) · 853 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>
<title>Asteroids - Stage.js/P2.js</title>
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, width=device-width, height=device-height" />
<link href="./example.css" rel="stylesheet" />
<style>
body{ font-family: 'Courier New', Courier, monospace; background: #000; }
</style>
</head><body class="dark">
<div class="about">A <a href="http://piqnt.com/stage.js/">Stage.js</a> Example
- <a href="https://github.com/piqnt/stage.js/tree/master/example/game-asteroids">Source</a></div>
<div class="hint">Use arrow keys & space</div>
<script src="./dep/p2.js"></script>
<script src="./dist/stage.web.js"></script>
<script src="./ext/stage-p2.js"></script>
<script src="./example.js"></script>
<script src="app.js"></script>
</body></html>