-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
48 lines (39 loc) · 995 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
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Game</title>
<script type="text/javascript" src="//requirejs.org/docs/release/2.3.2/minified/require.js"></script>
<script type="text/javascript">
(function () {
"use strict";
requirejs.config({
baseUrl: "build/js/",
paths: {
phaser: "../../node_modules/phaser/build/phaser.min"
},
shim: {
"phaser": {
exports: "Phaser"
}
}
});
require(["phaser", "Game"], function (Phaser, Game) {
let game = new Game.Game;
game.preload();
game.start();
});
}());
</script>
<style type="text/css">
body {
margin: 0;
background: #000;
}
canvas {
display: inline-block;
margin: 0 auto;
}
</style>
</body>
</html>