-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (45 loc) · 1.47 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html><html lang="en"><head><style>
body {
text-align: center;
}
button {
font-family: Lucida sans unicode;
color: white;
background: rgb(0, 0, 0);
}
#p5_loading {
background: black;
color: white;
box-sizing: border-box;
display: block;
position: absolut;
height: 100%;
width: 100%;
}
</style>
<script src="p5.js"></script>
<script src="p5.sound.min.js"></script>
<script src="libraries/p5sound.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8">
</head><body><button onclick="history.go(0);">Restart game</button>
<script src="libraries/p5.dom.js"></script>
<script src="backgroundMusic.js"></script>
<script src="sketch.js"></script>
<script src="0_variables.js"></script>
<script src="1_setup.js"></script>
<script src="2_draw.js"></script>
<script src="3_mousePressed.js"></script>
<script src="4_classes.js"></script>
<script src="7_splashScreen.js"></script>
<script src="8_level3.js"></script>
<script src="6_level2.js"></script>
<script src="5_level1.js"></script>
<script src="9_gameOver.js"></script>
<script src="10_keyPressed.js"></script>
<script src="bulletAndEnemyBullets.js"></script>
<div id="p5_loading" class="loadingclass">
Loading...
<img src="https://media.wired.com/photos/5a593a7ff11e325008172bc2/191:100/w_2400,h_1256,c_limit/pulsar-831502910.jpg" alt="Italian Trulli">
</div>
</body></html>