“So stoppen Sie Audio, wenn Sie andere in HTML spielen” Code-Antworten

So stoppen Sie HTML -Audio

sound.pause();
sound.currentTime = 0;
Doubtful Dunlin

So stoppen Sie Audio, wenn Sie andere in HTML spielen

const audios_with_src = document.querySelectorAll('.audios')
const play = document.querySelectorAll('.fa-play')
const pause = document.querySelectorAll('.fa-pause-circle')
const stop = document.querySelectorAll('.fa-stop')
const main_player = document.querySelector('.main-audio')

for(let i =0; i < audios_with_src.length; i++) {
 play[i].addEventListener('click', (e) => {
    main_player.src = audios_with_src[i].src;
    main_player.play()   
    })

pause[i].addEventListener('click', () => {
    main_player.pause()
})

stop[i].addEventListener('click', () => {
    main_player.pause()
    main_player.currentTime = 0;  // there is no stop() function so had to do this
})


}
Gentle Gharial

Ähnliche Antworten wie “So stoppen Sie Audio, wenn Sie andere in HTML spielen”

Fragen ähnlich wie “So stoppen Sie Audio, wenn Sie andere in HTML spielen”

Weitere verwandte Antworten zu “So stoppen Sie Audio, wenn Sie andere in HTML spielen” auf HTML

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen