扫码关注官方订阅号
走同样的路,发现不同的人生
video有个属性可以指定播放前图片的,手机码子,自己搜下吧
这样写就行:<!DOCTYPE HTML><html><body>
<video width="320" height="240" controls="controls"> <source src="/i/movie.ogg" type="video/ogg"> <source src="/i/movie.mp4" type="video/mp4">Your browser does not support the video tag.</video>
</body></html>地址:http://www.w3school.com.cn/tiy/t.asp?f=html5_video_all
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
video有个属性可以指定播放前图片的,手机码子,自己搜下吧
这样写就行:
<!DOCTYPE HTML>
<html>
<body>
<video width="320" height="240" controls="controls">
<source src="/i/movie.ogg" type="video/ogg">
<source src="/i/movie.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</body>
</html>
地址:http://www.w3school.com.cn/tiy/t.asp?f=html5_video_all