我怎样才能 mute/unmute JavaScript 中某些文件的所有声音?
How can I mute/unmute all sounds of some files in JavaScript?
我正在创建一个在 JavaScripts 文件中存储一些声音的游戏,如下所示:
let gameOver = false;
let gameWin = false;
const gameOverSound = new Audio("sounds/fim.wav");
const gameOverSound = new Audio("sounds/fim.wav");
const gameWinSound = new Audio("sounds/gameWin.wav");
我可以在 index.html 中创建一个按钮,当点击时,他会切换到 mute/unmute 这个文件的声音... 这可能吗?怎么样?
我的项目在 JavaScript 中包含 5 个文件,我想将所有
静音
你可以这样做。点击功能会在发生时停止音乐
let gameOver = false;
let gameWin = false;
const gameOverSound = new Audio("sounds/fim.wav");
const gameOverSound = new Audio("sounds/fim.wav");
const gameWinSound = new Audio("sounds/gameWin.wav");
let stopButton = document.querySelector("DivClass or DivID");
stopButton.onclik = ()=>{
gameOverSound.pause()
gameWinSound.pause()
}
我正在创建一个在 JavaScripts 文件中存储一些声音的游戏,如下所示:
let gameOver = false;
let gameWin = false;
const gameOverSound = new Audio("sounds/fim.wav");
const gameOverSound = new Audio("sounds/fim.wav");
const gameWinSound = new Audio("sounds/gameWin.wav");
我可以在 index.html 中创建一个按钮,当点击时,他会切换到 mute/unmute 这个文件的声音... 这可能吗?怎么样?
我的项目在 JavaScript 中包含 5 个文件,我想将所有
静音你可以这样做。点击功能会在发生时停止音乐
let gameOver = false;
let gameWin = false;
const gameOverSound = new Audio("sounds/fim.wav");
const gameOverSound = new Audio("sounds/fim.wav");
const gameWinSound = new Audio("sounds/gameWin.wav");
let stopButton = document.querySelector("DivClass or DivID");
stopButton.onclik = ()=>{
gameOverSound.pause()
gameWinSound.pause()
}