Erste version

This commit is contained in:
mikka 2026-04-19 11:06:57 +02:00
commit 6e7fb8c499
5 changed files with 222 additions and 0 deletions

6
static/script.js Executable file
View file

@ -0,0 +1,6 @@
const audios = document.querySelectorAll("audio")
for (const [index,audio] of audios.entries()){
audio.addEventListener("ended", (event) => { audios[index + 1].play()})
}
console.log(audios)