-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>BLACK DOG</title>
<link
rel="shortcut icon"
type="image/x-icon"
href="./public/images/blackdog.gif"
/>
<link rel="stylesheet" href="./public/css/style.css" />
</head>
<body>
<div id="vca-overlay"></div>
<div id="start-overlay">
<img
id="blackdog-start"
width="100"
height="100"
style="mix-blend-mode: normal"
src="./public/images/blackdog.gif"
/>
<p>BLACK DOG</p>
<sup>CLICK TO PLAY</sup>
</div>
<p id="title">BLACK DOG</p>
<p id="score">0</p>
<img id="sound" width="30" height="30" src="./public/images/soundoff.png" />
<a href="https://github.com/sidiousvic" target="blank"></a>
<canvas>
<img
id="blackdog"
width="0"
height="0"
src="./public/images/blackdog.gif"
/>
<img id="enemyR" width="0" height="0" src="./public/images/enemyR.gif" />
<img id="enemy" width="0" height="0" src="./public/images/enemy.gif" />
<img id="coin" width="0" height="0" src="./public/images/coin.gif" />
</canvas>
<script type="module" src="./public/scripts/utils.js"></script>
<script type="module" src="./public/scripts/elements.js"></script>
<script type="module" src="./public/scripts/models.js"></script>
<script type="module" src="./public/scripts/mechanics.js"></script>
<script type="module" src="./public/scripts/objects.js"></script>
<script type="module" src="./public/scripts/effects.js"></script>
<script type="module" src="./public/blackdog.js"></script>
</body>
</html>