Last active
October 13, 2018 13:01
-
-
Save mutsune/213b19c95925b0b2625cc77916cf0a0a to your computer and use it in GitHub Desktop.
次の audio を自動再生する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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