blob: a78adac73fad6543454545f7811571d4e35bac31 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>NoiseBlaster 9999</title>
<link rel="icon" href="./assets/mrgreen.png">
<link rel="stylesheet" type="text/css" href="./assets/main.css">
<script type="module">
CONFIG_SUBST
globalThis.mode = "soundboard";
</script>
<script type="module" src="./main.js"></script>
</head>
<body id="lcolonq-soundboard">
<div id="lcolonq-soundboard-container">
<div id="lcolonq-soundboard-entryframe">
<input id="lcolonq-soundboard-entry" type="text">
<span id="lcolonq-soundboard-entrytext">noise noise noise noise noise noise noise noise noise noise</span>
</div>
<div id="lcolonq-soundboard-docs">
<div class="lcolonq-soundboard-doc">
<h3>sounds</h3>
there's a bunch of em.
maybe one day we'll list them here!
</div>
<div class="lcolonq-soundboard-doc">
<h3>effects</h3>
<ul>
<li>
<pre>reverse</pre>
Reverse the selected sound.
</li>
<li>
<pre><num> tempo</pre>
Speed up or slow down the selected sound. Values greater than 1 will increase the speed, values between 0 and 1 will decrease the speed.
</li>
</ul>
</div>
</div>
</div>
</body>
</html>
|