-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
68 lines (67 loc) · 2.28 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript">
window["_gaUserPrefs"] = { ioo : function() { return true; } }
</script>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>X-Wing</title>
<link href="./css/style_no_stats.css" rel="stylesheet" type="text/css">
<link href="./css/resultbox.css" rel="stylesheet" type="text/css">
<link href="./css/instructionbox.css" rel="stylesheet" type="text/css">
<style type="text/css">
body {
background:#000000;
}
</style>
</head>
<body data-feedly-extension-exttag="3.0.3">
<div id="infobutton">
<a href="javascript:toggleInfo()"><img border="0" src="./img/i.png"></a>
</div>
<div id="info">
<b>X-Wing</b><br>
Move mouse to control, left = flip, right = fire.<br>
(Or Arrowkeys, space = flip, ctrl = fire.)
<p>Some simple game test. Try to get as far as possible in the trench run.<br>
Fullscreen recommended, press F11. Or 'F'
</div><font color="#777777"></font>
<div id="resultbox">
<font color="#777777"></font>
</div>
<div id="instructionbox" style="display: block; margin-left: -348px; margin-top: -66px;">
<font color="#777777"><br>
<br>
<img src="./img/instructions.png"></font>
</div><font color="#777777">
<script src="./vendor/three.js" type="text/javascript">
</script>
<script src="./vendor/Tween.js" type="text/javascript">
</script>
<script src="./js/ShaderExtras.js" type="text/javascript">
</script>
<script src="./js/EffectComposer.js" type="text/javascript">
</script>
<script src="./js/MaskPass.js" type="text/javascript">
</script>
<script src="./js/RenderPass.js" type="text/javascript">
</script>
<script src="./js/BloomPass.js" type="text/javascript">
</script>
<script src="./js/ShaderPass.js" type="text/javascript">
</script>
<script src="./js/FilmPass.js" type="text/javascript">
</script>
<script src="./js/THREEx.WindowResize.js" type="text/javascript">
</script>
<script src="./js/info.js" type="text/javascript">
</script>
<script src="./js/sound.js" type="text/javascript">
</script>
<script src="./js/app.js"></script>
</font>
<div id="container">
<canvas height="659" style="position: absolute; top: 0px; left: 0px;" width="1280"></canvas>
</div>
</body>
</html>