-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (40 loc) · 1.06 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
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1" />
<style>
body {
padding: 5px;
background-image: url('img/brickwall.png');
}
#maincanvas {
position: fixed;
top: 0;
left: 0;
user-select: none;
width: 480px;
height: 300px;
-ms-user-select: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-webkit-touch-callout: none;
-webkit-user-drag: none;
}
</style>
</head>
<body>
<canvas id=maincanvas width=320 height=200>
</canvas>
</body>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="js/deps/lodash.min.js"></script>
<script src="js/deps/backbone-min.js"></script>
<script src="js/deps/pathfinding-browser.min.js"></script>
<script src="js/deps/q.js"></script>
<script src="js/deps/hammer.js"></script>
<script src="js/deps/hammer.plugins.js"></script>
<script data-main="js/main" src="js/deps/require.js"></script>
<script>
</script>
</html>