“Adicionar botão mudo ao html5 player” Respostas de código

Adicionar botão mudo ao html5 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'))
});
Easy Eagle

Adicionar botão mudo ao html5 player


<video width="320" height="240" controls muted>
  <source src="x" type="video/x">
  <source src="x" type="x">
</video>

Adventurous Armadillo

Respostas semelhantes a “Adicionar botão mudo ao html5 player”

Perguntas semelhantes a “Adicionar botão mudo ao html5 player”

Mais respostas relacionadas para “Adicionar botão mudo ao html5 player” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código