-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
33 lines (30 loc) · 1000 Bytes
/
game.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="icon" type="image/svg+xml" href="/vite.svg"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta https-equiv="Content-Security-Policy" content="default-src *;"/>
<title>MIDI HERO</title>
<script type="module" src="/src/game/main.ts"></script>
</head>
<body>
<div id="app"></div>
<div class="header">
<button onclick="window.open('/midi-hero/marketplace.html')">Marketplace</button>
<audio controls id="audioPlayer" ></audio>
<div>
Audio delay:
<input type="range" min="-1.0" max="0.5" value="0" step="0.001" id="timeOffset" style="width: 500px"/>
</div>
<div>
Easyculty:
<input type="range" min="0.03" max="0.1" value="0.05" step="0.01" id="hitTime"/>
</div>
<div>
Background:
<input type="range" min="0.03" max="0.75" value="0.5" step="0.01" id="visibility"/>
</div>
</div>
</body>
</html>