Skip to content

Instantly share code, notes, and snippets.

@mutsune
Last active October 13, 2018 13:01
Show Gist options
  • Save mutsune/213b19c95925b0b2625cc77916cf0a0a to your computer and use it in GitHub Desktop.
Save mutsune/213b19c95925b0b2625cc77916cf0a0a to your computer and use it in GitHub Desktop.
次の audio を自動再生する
const tunes = document.querySelectorAll('audio');
tunes.forEach((e, i) => e.onended = () => tunes[i + 1].play());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment