Browse Source

Update 'index.html'

master
ccl 2 months ago
parent
commit
7373a42062
  1. 35
      index.html

35
index.html

@ -167,6 +167,10 @@
<!-- AUDIO -->
<!-- PLACEHOLDER link: https://vvvvvvaria.org/logs/zamopuzo/audio/varia_broadcasts_jingle1.mp3 -->
<div class="audio-stream fullscreen" id="showAudio">
<audio id="player3" preload="none">
<source src="https://voice.vvvvvvaria.org/live" type="audio/mpeg">
Your browser does not support the audio element. Try the direct link to the audio below!
</audio>
<audio id="player" preload="none">
<source src="https://voice.vvvvvvaria.org/live" type="audio/mpeg">
Your browser does not support the audio element. Try the direct link to the audio below!
@ -176,11 +180,16 @@
Your browser does not support the audio element. Try the direct link to the audio below!
</audio>
<p>
Tune in to the 8M marches in both Rotterdam (18:00-19:15) and Utrecht (18:00-20:15) using the buttons below<br>
8m streaming programme<br><br>
14:00-17:00 CET Counter Cloud Day in Basel<br>
18:00-19:15 CET Livestream of the International Women's Day demonstration in Rotterdam<br>
18:00-20:15 CET Livestream of the International Working Women's Day in Utrecht<br>
<!--Tune in to the 8M marches in both Rotterdam (18:00-19:15) and Utrecht (18:00-20:15) using the buttons below<br>
Press play to tune in! It might take a few seconds to load...<br>
Druk op "play" om te luisteren! Het kan een paar seconden duren voordat je iets hoort...
Druk op "play" om te luisteren! Het kan een paar seconden duren voordat je iets hoort...-->
</p>
<div class="audio-buttons">
<button id="audioButton3" class="stream-button b-narrow" onclick="Play3()">Play from Basel</button>
<button id="audioButton" class="stream-button b-narrow" onclick="Play()">Play from Rotterdam</button>
<button id="audioButton2" class="stream-button b-narrow" onclick="Play2()">Play from Utrecht</button>
<script>
@ -192,6 +201,10 @@
audio.volume = 0.6;
var butn2 = document.getElementById("audioButton2");
var audio3 = document.getElementById("player3");
audio.volume = 0.6;
var butn3 = document.getElementById("audioButton3");
function Play() {
if(audio.paused) {
audio.play();
@ -213,20 +226,26 @@
butn2.innerText = "Play from Utrecht";
}
}
function Play3() {
if(audio3.paused) {
audio3.play();
butn3.innerText = "Pause";
}
else {
audio3.pause();
butn3.innerText = "Play from Basel";
}
}
</script>
<button class="stream-button b-narrow vol" onclick="document.getElementById('player').volume += 0.1">Vol +</button>
<button class="stream-button b-narrow vol" onclick="document.getElementById('player').volume -= 0.1">Vol -</button>
</div>
<span class="audio-link">(<a class="windowlinks" href="https://voice.vvvvvvaria.org/live" target="_blank">direct link to Rotterdam audio</a>)</span>
<span class="audio-link">(<a class="windowlinks" href="https://voice.vvvvvvaria.org/live" target="_blank">direct link to Rotterdam/Basel audio</a>)</span>
<span class="audio-link">(<a class="windowlinks" href="https://radio.goodtimesbadtimes.club:8030/radio.mp3" target="_blank">direct link to Utrecht audio</a>)</span>
</div>
<!-- IMAGE GALLERY -->
<!-- PLACEHOLDER links:
<img src="https://vvvvvvaria.org/archive/2021-01+02-Read-and-Repair_Wireless-Imagination/a_safe_image.php.jpeg">
<img src="https://vvvvvvaria.org/archive/varia-server/7e920c7f_Screenshot%20from%202020-03-21%2019-07-20.png">
<img src="https://vvvvvvaria.org/archive/varia-server/varia-home-red.png">
<img src="https://vvvvvvaria.org/archive/varia-server/welcome.png"> -->
<div class="img-gallery" id="showGal">

Loading…
Cancel
Save