-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (68 loc) · 2.06 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
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Tanks</title>
<style>
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
}
body {
margin: 0;
padding: 0;
overflow: hidden;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.container {
border:3px solid pink;
margin: 0 auto;
padding: 0;
width: 95%;
height: 520px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
canvas {
background: #FFF;
display: block;
margin: 0;
padding: 0;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
#performance {
display: inline-block;
font-family: Helvetica;
font-size: 15px;
}
p {
display: inline-block;
font-family: helvetica;
font-size: 11pt;
font-weight: 100;
margin-left: 30px;
}
</style>
</head>
<body class="noselect">
<div id="performance"></div><p>Spacebar fires | <strong>Up, Down:</strong> <em>Move Barrel.</em> <strong>Left, Right:</strong> <em>Adjust muzzle velocity</em></p>
<div class="container">
<canvas id="canvas">It looks like your browser doesn't support Canvas</canvas>
</div>
<script data-main="js/main" src="lib/require.js"></script>
</body>
</html>