-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsession.html
More file actions
65 lines (41 loc) · 1.48 KB
/
session.html
File metadata and controls
65 lines (41 loc) · 1.48 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jscripttest</title>
<meta name="description" content="jscripttest">
<meta name="author" content="SitePoint">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="cli.css">
<script src="/socket.io/socket.io.js"></script>
<script src="client-modules.js"></script>
<script src="static/hammer.min.js"></script>
<script src="static/hammer-time.min.js"></script>
</head>
<body>
<!-- IMAGE LOADER -->
<!-- BOTTOM TO TOP IS THE ORDER -->
<!-- canvas layer -->
<canvas id='map' width="128" height="128">
</canvas>
<!-- anim layer -->
<!-- top layer -->
<!-- Player Hud -->
<div id="tophud" style="position: fixed; top:0;">
</div>
<div id="bothud" style="position: fixed; bottom: 20px;">
</div>
<!-- selector hud -->
<div id="chooseteam">
<div id="selBlue" class="sels" style="display: inline-block; background-color:Blue"></div>
<div id="selGreen" class="sels" style="display: inline-block; background-color:Green"></div>
<br>
<div id="selRed" class="sels" style="display: inline-block; background-color:Red"></div>
<div id="selGold" class="sels" style="display: inline-block; background-color:Gold"></div>
<br> <p style="text-align:center;"><h1>Select Your Team</h1></p>
</div>
<p style="display: none" id='coor'></p>
<p style="display: none" id="logger"></p>
<script src="main.js"></script>
</body>
</html>