forked from domasx2/banditracer-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (37 loc) · 883 Bytes
/
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
<html>
<head>
<title>GameJS Application</title>
<!-- Styling -->
<style type=text/css>
body{
background:#fff;
color:#222;
margin:1em 0 2em 6em;
padding:0;
}
#gjs-loader {
width: 50%;
height: 50%;
}
</style>
<!-- Start javascript/main.js -->
<script src="./public/yabble.js"></script>
<script src="./public/gamejs-wrapped.js"></script>
<!-- deployment: uncomment following, comment two lines above
<script src="./javascript/gjs-app-wrapped.js"></script>
-->
<script>
require.setModuleRoot('./javascript/');
require.run('main')
</script>
</head>
<!-- Html -->
<body>
<div>
<canvas id="gjs-canvas"></canvas>
<p>
Powered by <a href="http://gamejs.org">GameJs</a>.
</p>
</div>
</body>
</html>