Answers for "mute button in video html"

1

mute video html

<!-- Add the `muted` tag -->
<video muted>
  ...
</video>
Posted by: Guest on August-03-2021
0

add mute button to html5 video player

$("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'))
});
Posted by: Guest on February-24-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language