-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathindex.html
38 lines (34 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta http-equiv="x-ua-compatible" content="IE=edge" />
<title>Roguish</title>
<link rel="stylesheet" href="main.css">
</head>
<body style="padding: 0px; margin: 0px; width: 100%; height: 100%; background-color: #000;">
<div id="backtomain">
<img src="graphics/hamburger.png" height="23" width="27" alt="">
</div>
<center>
<canvas id="gamecanvas" style="width: 100%; height: 100%; zoom: 100%;-moz-transform: scale(1); -moz-transform-origin: 0 0; z-index: 1; position: absolute; top: 0px; left: 0px; -ms-touch-action: none; touch-action: none;"></canvas>
</center>
<div class="second"></div>
<div id="playermenu">
<span id="currentPlayer">5th level mecha</span><br>
<progress id="health" value="90" max="100"></progress>
</div>
<script src="build/game.min.js" type="text/javascript"></script>
<script>
$("#backtomain").click(function(){
backToMain();
})
</script>
<script>
// google analytics placeholder
</script>
</body>
</html>