静音和取消静音按钮切换 html5 音频
我已经了解如何通过输入以下代码来使 声音对象静音:
<a href="#" onclick="document.getElementById('ambiance').muted = true; return false">
mute sound
</a>
现在我正在搜索如何使用相同的按钮和切换选项来静音/取消静音?
谁能给我指路吗?
I've understood how to mute an <audio>
sound object by putting this code :
<a href="#" onclick="document.getElementById('ambiance').muted = true; return false">
mute sound
</a>
Now I'm searching how to mute/unmute my sound using the same button with the option to toggle it ?
Can anyone give me directions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this: