Skip to content

Instantly share code, notes, and snippets.

@yajamon
Created August 10, 2015 08:04
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 yajamon/4dbade21f279a8538d47 to your computer and use it in GitHub Desktop.
Save yajamon/4dbade21f279a8538d47 to your computer and use it in GitHub Desktop.
// /index.htm
// /event.htm
// /dialy.htm
// /continue.htm
var bgm = new Audio();
function Csound(url){
if (url == "no"){
return;
}
var baseDir = "sound/sound/";
var extention = ".mp3";
bgm.src = baseDir+url+extention;
bgm.load();
bgm.play();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment