“Tambahkan tombol Mute ke HTML5 Video Player” Kode Jawaban

Tambahkan tombol Mute ke 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'))
});
Easy Eagle

Tambahkan tombol Mute ke HTML5 Video Player


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

Adventurous Armadillo

Jawaban yang mirip dengan “Tambahkan tombol Mute ke HTML5 Video Player”

Pertanyaan yang mirip dengan “Tambahkan tombol Mute ke HTML5 Video Player”

Lebih banyak jawaban terkait untuk “Tambahkan tombol Mute ke HTML5 Video Player” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya