HTML5 Video muted but still playing

后端 未结 9 1446
闹比i
闹比i 2021-02-05 02:38

Title pretty much says it all. I have a video which automatically starts playing when arriving on the page.

In the HTML code I have put muted=\"muted\". And here comes

相关标签:
9条回答
  • 2021-02-05 03:16

    looks like this muted stopped working in chrome 64. still works in 63.

    0 讨论(0)
  • 2021-02-05 03:19

    This work fine for me.

    <video oncanplay="this.muted=true" id="video" width="640px" height="350px" autoplay="autoplay" loop="loop" controls="controls">
                <source src="intouchables.f4v" type="video/mp4">
                Your browser does not support the video tag.
    </video>
    
    0 讨论(0)
  • 2021-02-05 03:23
    <video preload= "true" autoplay = "autoplay" loop = "loop" muted>
        <source src = "video/Real-Estate.mp4" type = "video/mp4">
    </video>
    
    0 讨论(0)
提交回复
热议问题