gpt4 book ai didi

javascript - 要在空格键上播放的音频,请单击

转载 作者:行者123 更新时间:2023-12-03 01:18:41 24 4
gpt4 key购买 nike

我有一个简单的猜词游戏,并且需要空格键才能开始。我想同时播放音乐,没有任何HTML,但是没有运气。有人能帮忙吗?我也没有收到任何DOM错误。

// press spacebar to start game
function startGame() {

document.body.onkeyup = function(e){

if(e.keyCode == 32){

start();
checkInput();
document.getElementById('startBanner').style.display = 'none';

let audio = new Audio('assets/audio/final_fight_selection.mp3')
audio.play();

}
}
}

最佳答案

你有音频标签吗?
认为您可能需要将src设置为:
https://stackoverflow.com/a/21492698/4873576

编辑:

  document.body.onkeyup = function(e){
if(e.keyCode == 32){
const audio = document.createElement('audio');
audio.src = ('https://www.soundhelix.com/examples/mp3/SoundHelix-Song-1.mp3')
audio.play();

}
}

http://jsfiddle.net/n1zxdco2/1/

关于javascript - 要在空格键上播放的音频,请单击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61783571/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com