我有这个代码用于在网页上观看视频:
<video src="intro.mp4" preload="auto" autoplay loop></video>
在Pc中工作正常,但在移动设备中无效。
感谢您的帮助。
答案 0 :(得分:1)
在most browsers/platforms support MP4期间,您可能需要添加多种格式。所以,问题可能是你只提供MP4作为格式。
<video preload="auto" autoplay="true" loop="loop" controls="true">
<source src="intro.mp4" type="video/mp4" />
<source src="intro.webm" type="video/webm" />
<source src="intro.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
同样仅仅是一个FYI,自动播放可能无法在移动设备上运行。
希望这会有所帮助。