-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (38 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdn.jsdelivr.net/npm/p5@0.10.1/lib/p5.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/p5@0.10.1/lib/addons/p5.sound.js" defer></script>
<script src="src/colors.js" defer></script>
<script src="src/levels.js" defer></script>
<script src="src/explosion.js" defer></script>
<script src="src/global.js" defer></script>
<script src="src/planet.js" defer></script>
<script src="src/game.js" defer></script>
<script src="src/player.js" defer></script>
<script src="src/enemy.js" defer></script>
<script src="src/item.js" defer></script>
<script src="src/main.js" defer></script>
<title>2020</title>
<style>
html,
body {
position: fixed;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
overflow: hidden;
background-color: #f5f5f5;
}
canvas {
box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.02);
border-radius: 0px;
}
</style>
</head>
<body>
</body>
</html>