📜  从头开始创建一个 html5 视频播放器 - Html 代码示例

📅  最后修改于: 2022-03-11 14:53:25.845000             🧑  作者: Mango

代码示例2
$("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'))