-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
44 lines (36 loc) · 1.17 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' /> <!-- prevent zoom on mobile devices -->
<title>Soundboard</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="libs/jquery-3.6.0.min.js"></script>
<script src="libs/howler.min.js"></script>
<script src="src/player.js"></script>
<script src="src/controller.js"></script>
</head>
<body>
<div id="controls">
<div class='soundboardButton'>
Main volume:<br>
<input id="slider-main-volume" type="range" min="0" max="1" step="0.01" value="1">
</div>
</div>
<div id="pane">
</div>
<div id="footer">
<div id="connection">(disconnected)</div>
<a href="https://github.com/seeseekey/Soundboard">a simple HTML5 soundboard</a>
<a href="https://seeseekey.net">by seeseekey</a>
</div>
<script>
$( document ).ready(function() {
// Handler for .ready() called.
var controller = new Controller();
controller.setup();
});
</script>
</body>
</html>