-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<script src="lib/p5.min.js"></script>
<script src="lib/p5.sound.min.js"></script>
<script src="lib/p5.play.js"></script>
<script src="src/BackgroundStar.js"></script>
<script src="src/ParticleSystem.js"></script>
<script src="src/SoundManager.js"></script>
<script src="src/DirectorAI.js"></script>
<script src="src/main.js"></script>
<link rel="icon" type="image/png" href="img/favicon.png"/>
</head>
<body style="background-color: black;">
<style>
canvas
{
image-rendering: crisp-edges;
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-optimize-contrast;
-ms-interpolation-mode: nearest-neighbor;
}
</style>
<p style="color:orange">Viktor! Mouse to move, spacebar or click to shoot. M to mute/unmute.</p>
<div id="sketch-holder" style="width:700px; height:700px; padding: 0px; border: thin solid red">
</div>
<p style="color:orange">Made with ❤ by Legendary Charizard and NortySpock, using p5 and p5.play. Code available on <a href="https://github.com/NortySpock/Viktor">GitHub</a>.</p>
</body>
</html>