his audio request

This commit is contained in:
zyqunix 2024-12-07 17:27:05 +01:00
parent a025525d04
commit 6b5270c64f
3 changed files with 23 additions and 22 deletions

View file

@ -15,7 +15,18 @@
<div class="main" id="main"> <div class="main" id="main">
<h3 id="played">No sound played. Press the button!</h3> <h3 id="played">No sound played. Press the button!</h3>
<button id="playButton">Get random sound</button> <button id="sound1 playButton">Play <strong>autist</strong>
<audio src="wav/sound1.wav"></audio>
</button>
<button id="sound2 playButton">Play <strong>downie</strong>
<audio src="wav/sound2.wav"></audio>
</button>
<button id="sound3 playButton">Play <strong>retard</strong>
<audio src="wav/sound3.wav" ></audio>
</button>
<button id="sound4 playButton">Play <strong>retarded autistic downie</strong>
<audio src="wav/sound4.wav"></audio>
</button>
</div> </div>
<audio id="audio" autoplay src="" aria-hidden="true"></audio> <audio id="audio" autoplay src="" aria-hidden="true"></audio>

View file

@ -1,29 +1,19 @@
const sounds = { const buttons = document.querySelectorAll('button');
autist: 'wav/sound1.wav',
downie: 'wav/sound2.wav', buttons.forEach(button => {
retard: 'wav/sound3.wav', const audio = button.querySelector('audio');
'retarded autistic downie': 'wav/sound4.wav' button.addEventListener('click', function() {
}; if (audio) {
audio.play();
}
});
});
const button = document.getElementById('playButton');
const header = document.getElementById('played');
const toggle = document.getElementById('toggle'); const toggle = document.getElementById('toggle');
const ad = document.getElementById('ad'); const ad = document.getElementById('ad');
let isHidden = false; let isHidden = false;
button.addEventListener('click', function() {
const audio = document.getElementById('audio');
const keys = Object.keys(sounds);
let randKey = keys[Math.floor(Math.random() * keys.length)];
let randSound = sounds[randKey];
audio.src = randSound;
audio.play();
header.innerHTML = randKey;
});
toggle.addEventListener('click', function() { toggle.addEventListener('click', function() {
if (!isHidden) { if (!isHidden) {
ad.style.display = 'none'; ad.style.display = 'none';

View file

@ -55,8 +55,8 @@ button:not(#toggle) {
cursor: pointer; cursor: pointer;
transition: 0.1s ease-in-out; transition: 0.1s ease-in-out;
padding: 10px 20px; padding: 10px 20px;
font-weight: bold;
margin: 10px; margin: 10px;
} }
#toggle { #toggle {