-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex_wrapped.html
47 lines (44 loc) · 1.17 KB
/
index_wrapped.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
44
45
46
47
<html>
<head>
<title>GameJS Application</title>
<!-- Styling -->
<style type=text/css>
@font-face {
font-family: maass;
src: url( ./fonts/maass.ttf ) format("truetype");
}
body{
background:#fff;
color:#222;
padding:0;
}
#gjs-loader {
width: 50%;
height: 50%;
}
</style>
<!-- Start javascript/main.js -->
<link rel="stylesheet" type="text/css" href="./public/jquery-ui-1.8.14.custom.css" />
<script src="./public/jquery-1.5.1.min.js"></script>
<script src="./public/jquery-ui-1.8.14.custom.min.js"></script>
<script src="./public/yabble.js"></script>
<script src="./javascript/app.min.js"></script>
<script>
var SOUND = false;
require.setModuleRoot('./javascript/');
require.run('main');
$(document).ready(function(){
$('body p').css('display', 'none');
});
</script>
</head>
<!-- Html -->
<body>
<div>
<canvas id="gjs-canvas" ></canvas>
<p style="font-family:maass;">
Powered by <a href="http://gamejs.org">GameJs</a>.
</p>
</div>
</body>
</html>