📜  向 html5 视频播放器添加静音按钮 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:29.490000             🧑  作者: Mango

代码示例1
$("video").prop('muted', true);

$(".mute-video").click(function () {
    if ($("video").prop('muted')) {
        $("video").prop('muted', false);
        $(this).addClass('unmute-video'); // changing icon for button

    } else {
        $("video").prop('muted', true);
        $(this).removeClass('unmute-video'); // changing icon for button
    }
    console.log($("video").prop('muted'))
});