如何使用JS将我的页面上的所有声音静音?
这应该将HTML5 <audio>
和<video>
标记与Flash和朋友一起静音。
答案 0 :(得分:17)
这可以在vanilla JS中轻松完成:
// Mute a singular HTML5 element
function muteMe(elem) {
elem.muted = true;
elem.pause();
}
// Try to mute all video and audio elements on the page
function mutePage() {
var elems = document.querySelectorAll("video, audio");
[].forEach.call(elems, function(elem) { muteMe(elem); });
}
或在ES6中:
// Mute a singular HTML5 element
function muteMe(elem) {
elem.muted = true;
elem.pause();
}
// Try to mute all video and audio elements on the page
function mutePage() {
document.querySelectorAll("video, audio").forEach( elem => muteMe(elem) );
}
当然,这仅适用于<video>
或<audio>
元素,因为Flash或JS初始化音频等项目通常无法限制。
答案 1 :(得分:8)
规则#1:在页面加载时不要启用音频自动播放。
无论如何,我将使用jQuery显示HTML5:
// WARNING: Untested code ;)
window.my_mute = false;
$('#my_mute_button').bind('click', function(){
$('audio,video').each(function(){
if (!my_mute ) {
if( !$(this).paused ) {
$(this).data('muted',true); //Store elements muted by the button.
$(this).pause(); // or .muted=true to keep playing muted
}
} else {
if( $(this).data('muted') ) {
$(this).data('muted',false);
$(this).play(); // or .muted=false
}
}
});
my_mute = !my_mute;
});
Flash Media Players依赖于暴露给JavaScript的自定义API(hopefuly)。
但你明白这一点,通过媒体进行迭代,检查/存储播放状态,以及静音/取消静音。
答案 2 :(得分:2)
你可以做到
[...document.querySelectorAll('audio, video')].forEach(el => el.muted = true)
或
Array.from(document.querySelectorAll('audio, video')).forEach(el => el.muted = true)
答案 3 :(得分:1)
保持对数组内所有音频/视频元素的引用,然后在设置.muted=true
时创建一个对它们执行循环的函数。
答案 4 :(得分:1)
我是这样做的:
Array.prototype.slice.call(document.querySelectorAll('audio')).forEach(function(audio) {
audio.muted = true;
});
答案 5 :(得分:0)
@zach-saucier
function muteMe(elem) {elem.muted = false;elem.pause();}// Try to mute all video and audio elements on the page
function mutePage() {
var elems = document.querySelectorAll("video, audio");
[].forEach.call(elems, function(elem) { muteMe(elem); });
}
这对我有用