如何禁用html5視頻自動播放?
我嘗試過的:
<video width="640" height="480" controls="controls" type="video/mp4" autoplay="false" preload="none"><source src="http://mydomain.com/mytestfile.mp4">Your browser does not support the video tag.</video>
我將刪除autoplay屬性,因為如果瀏覽器找到自動播放字符串,它會自動播放!
自動播放不是布爾類型.
此外,類型進入源代碼,如下所示:
<video width="640" height="480" controls preload="none"> <source src="http://example.com/mytestfile.mp4" type="video/mp4"> Your browser does not support the video tag. </video>
參考:http://www.w3.org/TR/html-markup/video.html
刪除視頻標記中的自動播放.使用這樣的代碼
<video class="embed-responsive-item" controls> <source src="http://example.com/video.mp4"> Your browser does not support the video tag. </video>
這是100%的工作
嘗試添加autostart="false"到源標記.
<video width="640" height="480" controls="controls" type="video/mp4" preload="none"> <source src="http://example.com/mytestfile.mp4" autostart="false"> Your browser does not support the video tag. </video>