In html page video tag is not playing on page load

时间:2018-05-24 07:54:37

标签: html html5-video

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>

1 个答案:

答案 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

相关问题