-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (28 loc) · 990 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p2.js/0.7.1/p2.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/particlesjs/2.2.3/particles.min.js"></script>
</head>
<body>
<div id="scene"></div>
<div id="game"></div>
<!-- <form id="music-controls" class="music-controls">
<label>BPM
<input id="bpm-range" type="range" min="20" max="80" value="50">
</label>
<label>Filter
<input id="filter-range" type="range" min="0" max="2200" value="800" step="1">
</label>
<label>Swing
<input id="swing-range" type="range" min="0" max="1" value="0">
</label>
<input id="play-btn" type="button" value="play">
</form> -->
<script type="module" src="/main.js"></script>
</body>
</html>