“Buat pemutar video HTML5 dari awal” 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

Buat pemutar video HTML5 dari awal

$("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'))
Famous Finch

Jawaban yang mirip dengan “Buat pemutar video HTML5 dari awal”

Pertanyaan yang mirip dengan “Buat pemutar video HTML5 dari awal”

Lebih banyak jawaban terkait untuk “Buat pemutar video HTML5 dari awal” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya