透過 audio
tag 設定背景音樂
class BGM {
constructor() {
this.audio = document.createElement("audio");
// 音樂來源
this.audio.src = "https://www.bensound.com/bensound-music/bensound-hipjazz.mp3";
// 當瀏覽器載入頁面時也一併載入音樂
this.audio.setAttribute("preload", "auto");
};
// 播放音樂
play(){
this.audio.play();
};
// 暫停播放
pause(){
this.audio.pause();
};
};
var bgm = new BGM()
今天記到這邊,大家晚安,如果以上內容有理解錯誤的地方都希望能再協助糾正,感恩的心 ε= ᕕ( ᐛ )ᕗ