How to unmute html5 video with a muted prop

后端 未结 4 2062
小鲜肉
小鲜肉 2021-02-08 18:50

I\'ve created a simple video block with muted (for mobile autostart) but now i can not change the mute state...

I used that repository , fiddle link would be great.

4条回答
  •  北荒
    北荒 (楼主)
    2021-02-08 19:20

    You should use videoEl.muted

    var video = document.getElementById('video');
    
    function toggleMute(){
      video.muted = !video.muted;
    }
    
    
    

    Toggle Mute

提交回复
热议问题