diff options
| author | sD <stoned@derpymail.org> | 2020-02-15 19:52:22 +0100 |
|---|---|---|
| committer | sD <stoned@derpymail.org> | 2020-02-15 19:52:22 +0100 |
| commit | a83e135966dd25a929b2f6d4526fe0253c876f90 (patch) | |
| tree | 2dfe53e813832aca7c9d67c6d67dd537dd02b8f4 /webAO/client.html | |
| parent | 7a670b6cd3064d339c03c7d0840c176087f1ec99 (diff) | |
the audio controls come with a volume slider
Diffstat (limited to 'webAO/client.html')
| -rw-r--r-- | webAO/client.html | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/webAO/client.html b/webAO/client.html index a47c093..857cbad 100644 --- a/webAO/client.html +++ b/webAO/client.html @@ -281,12 +281,10 @@ <br> <br> <div class="slider">Music - <input id="client_mvolume" class="long" type="range" min="0" max="100" value="80" - onchange="changeMusicVolume()"> + <audio id="client_musicaudio" onvolumechange="changeMusicVolume()" controls loop></audio> </div> <div class="slider">SFX - <input id="client_svolume" class="long" type="range" min="0" max="100" value="70" - onchange="changeSFXVolume()"> + <audio id="client_sfxaudio" onvolumechange="changeSFXVolume()" controls></audio> </div> <div class="slider">Blip <input id="client_bvolume" class="long" type="range" min="0" max="100" value="60" @@ -379,13 +377,6 @@ <input id="client_musicsearch" style="display:none"></input> <select id="client_musiclist" size="5" onchange="musiclist_click(event)"> </select> - <span id="client_musiccontrol"> - <audio id="client_musicaudio" controls loop></audio> - </span> - <span id="client_sound" style="display:none"> - - - </span> </template> </html>
\ No newline at end of file |
