forked from dobesv/1gam-LaserPuzzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.html
46 lines (26 loc) · 1.18 KB
/
dev.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
<!DOCTYPE html>
<html>
<head>
<title>Laser Puzzle</title>
<!--<meta name="viewport" content="width=device-width; initial-scale=1; maximum-scale=1; user-scalable=0;"/>-->
<meta name="viewport" content="user-scalable=no, maximum-scale=1.0, width=device-width, height=device-height"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
<!-- Production mode (minified and packed) -->
<!-- <script type="text/javascript" src="playcraftjs/dist/playcraft-0.5.6.min.js"></script> -->
<script type="text/javascript" src="playcraftjs/lib/playcraft.js"></script>
<script>
pc.start('pcGameCanvas', 'TheGame', 'js/', ['lazerpuzzle.js'], "playcraftjs/lib/");
</script>
</head>
<body>
<div style='position: absolute; width: 100%; height: 100%; padding:0; margin:0; left:0; top:0'>
<div id="center1" style='background-color: #000; height: 80%; width:100%'>
<canvas id="pcGameCanvas"></canvas>
</div>
<div id="stats" style='background-color:#fff; height: 20%; width:100%'>
<canvas id="pcDebug"></canvas>
</div>
</div>
</body>
</html>