Here is my code of video tag but it is not working properly on page load, should i need any preloader to autoplay the video on page load`
<video id="video_player" width="100%" autoplay="1">
<source src="video/banner-video1.mp4" type="video/mp4">
</video>
答案 0 :(得分:2)
如果您只想自动播放视频:
<video id="video_player" width="100%" autoplay>
<source src="video/banner-video1.mp4" type="video/mp4">
</video>
以下是有关它的更多信息:https://www.w3schools.com/tags/att_video_autoplay.asp