-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (43 loc) · 1.29 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
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<title>Dance Dance Shoot 'Em Up</title>
<style>
.display {
padding: 0;
margin: auto;
display: block;
width: 512px;
}
#defaultCanvas0 { /* P5 canvas */
display: none;
}
body {background-color: black;}
</style>
</head>
<body>
<div class="display" style="width: 512px;">
<canvas id="maincanvas" width="512" height="640" style="border:5px solid #000000;">
</canvas>
<canvas id="beatcanvas" width="512" height="50" style="border:5px solid #000000;">
</canvas>
</div>
<div id="imagestore" style="display: none;">
</div>
<script src="js/lib/jquery.js"></script>
<script src="js/lib/p5.min.js"></script>
<script src="js/lib/victor.min.js"></script>
<script src="js/lib/p5.sound.min.js"></script>
<script src="js/level01.js"></script>
<script src="js/enemies.js"></script>
<script src="js/boss.js"></script>
<script src="js/main.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118075014-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-118075014-1');
</script>
</body>
</html>