-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
111 lines (110 loc) · 3.46 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title id="soundboard-head-title"> </title>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="js/board.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<link
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="node_modules/bootstrap/dist/css/bootstrap-theme.min.css"
rel="stylesheet"
/>
<link href="css/custom.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<h1 id="soundboard-title"></h1>
<div id="controls">
<form class="form-inline">
<div class="form-group" id="volume-control">
<div class="input-group">
<div class="input-group-addon" title="Volume">
<span class="glyphicon glyphicon-volume-up"> </span>
</div>
<input
type="number"
class="form-control"
title="Volume - increase [Arrow Up] - decrease [Arrow Down]"
id="gain"
name="gain"
min="0"
max="100"
value="10"
/>
</div>
</div>
<div class="btn-group" role="group">
<a
class="btn btn-danger"
id="stop-all-sounds"
title="Stops all sounds [esc] or [backspace]"
onclick="stopPlaying()"
>
<i class="glyphicon glyphicon-stop"></i>
</a>
<a
class="btn btn-primary"
id="play-random-sound"
title="Play random sound [shift]"
onclick="playRandom()"
>
<i class="glyphicon glyphicon-random"></i>
</a>
<a
class="btn btn-warning"
id="repeat"
title="Repeat next sound forever [control]"
onclick="toggleRepeat()"
>
<i class="glyphicon glyphicon-repeat"></i>
</a>
<a
class="btn btn-default"
id="previous-cat"
title="Switch to previous category [Arrow left]"
onclick="previousCat()"
>
<i class="glyphicon glyphicon-arrow-left"></i>
</a>
<a
class="btn btn-default"
title="Switch to next category [Arrow right]"
id="next-cat"
onclick="nextCat()"
>
<i class="glyphicon glyphicon-arrow-right"></i>
</a>
</div>
</form>
<p></p>
<div class="form-group" id="search-control">
<div class="input-group">
<div class="input-group-addon" title="Search">
<span class="glyphicon glyphicon-search"> </span>
</div>
<input
type="text"
title="Search can be focussed with [Alt]"
class="form-control"
id="search"
name="search"
placeholder="Search..."
/>
</div>
</div>
</div>
<p></p>
<div id="tabs" class="container">
<ul id="tabs-buttons" class="nav nav-tabs"></ul>
<p></p>
<div id="tabs-contents" class="tab-content clearfix"></div>
</div>
<div id="buttons" class="row"></div>
</div>
</body>
</html>