-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<title>Perfect Sokoban</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="apple-touch-icon" href="assets/icon128.png"/>
<link rel="icon" href="assets/icon128.png"/>
</head>
<body style="background-color: #000">
<div id="warning-message">
<img src="assets/box_whaaat.png" alt="" style="float: left; margin: 0 5px 0 0" />
In order to play <span style="font-family: '8bits'; font-size: 14px;">PERFECT SOKOBAN</span>, please add it to your homescreen and then
use your phone in landscape mode.
</div>
<div id="arrow"></div>
<canvas id="canvas"></canvas>
<div style="font-family: '8bits'; font-size: 14px;"> </div>
<script src="lib/mustach.js"></script>
<script src="engine/player.js"></script>
<script src="engine/map.js"></script>
<script src="engine/box.js"></script>
<script src="engine/images.js"></script>
<script src="engine/sokoban.js"></script>
</body>
</html>