Skip to content

Instantly share code, notes, and snippets.

@YutaWatanabe
Last active January 1, 2016 12:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YutaWatanabe/8144720 to your computer and use it in GitHub Desktop.
Save YutaWatanabe/8144720 to your computer and use it in GitHub Desktop.
HTML5 Audio をタッチイベントで再生する
hoge.addEventListener('touchstart', function(){
var audio = new Audio ('foo.wav');
audio.play();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment