-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.94 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.94 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="client/img/favicon.ico">
<title>Ћx</title>
<link href="client/css/style.css" rel="stylesheet">
</head>
<body class="full">
<div id="scores" class="full hidden animate">
<table>
<thead>
<tr class="head"><th>ID</th><th>Поражений</th><th>Побед</th><th>IP</th><th>Ping</th></tr>
</thead>
<tbody></tbody>
</table>
</div>
<div id="notes">
<div class="l1">
<div class="key">Q<div class="note l">Вращение<br>башней налево </div></div>
<div class="key">W<div class="note c">Движение<br>вперёд</div></div>
<div class="key">E<div class="note r">Вращение<br> башней направо</div></div>
<div class="key o">O<div class="note c">Дымовая<br>завеса</div></div>
<div class="key">P<div class="note c b">Таблица<br>игроков</div></div>
</div>
<div class="l2">
<div class="key">A<div class="note l">Поворот<br>налево </div></div>
<div class="key">S<div class="note c b">Движение<br>назад</div></div>
<div class="key">D<div class="note r">Поворот<br> направо</div></div>
</div>
<div class="key space">Space<div class="note c b">Огонь</div></div>
</div>
<div id="screen"></div>
<div id="xmap"></div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.0.4/socket.io.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<script src="client/js/matter.js" type="text/javascript"></script>
<script src="client/js/config.js" type="text/javascript"></script>
<script src="client/js/exe.js" type="text/javascript"></script>
</body>
</html>