-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (59 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
html, body {
width: 99%;
text-align: center;
background: #111 url(images/background3.png);
margin: 0;
padding: 0;
height: 100%;
}
iframe {
background: #fff;
z-index: 2;
border: 12px solid #222;
margin: 1em;
width: 960px;
height: 720px;
}
#hint {
color: rgba(255,255,255,.3);
display: none;
}
#hint span {
font-size: 175%;
position: relative;
top: 0.1em;
}
</style>
<script type="text/javascript" src="jquery-2.1.1.min.js" /></script>
<script type="text/javascript">
$(document).ready(function() {
if (typeof window.innerWidth != 'undefined') {
var screen_width = window.innerWidth;
var screen_height = window.innerHeight;
}
var margin_top = screen_height / 2 - 480 / 2 - 12 - 100;
$('#game').css('margin-top', margin_top).focus();
//$('#game').css('margin-left', margin_left);
});
</script>
</head>
<body>
<iframe id="game" src="game.html">
</iframe><br>
<p id="hint">
<b>Controls:</b><br>
<span>← →</span> : Walk, Run, Brake <br>
<span>↑</span> : Look up<br>
<span>↓</span> : Roll, Crouch <br>
<span> </span> <strong>Space</strong> : Jump <br>
<strong>Space</strong> + <span>↑</span> : Charge <br>
<br>
Best viewed with Chrome / Chromium
</p>
</body>
</html>