你能给我解释一下
<video src=""> </video>和
<video><source> </source></video>发布于 2016-08-27 18:12:46
通过使用<video> <source> </source> </video>。您可以添加多个源元素。多个源元素可以链接到不同的视频文件。浏览器将使用第一个识别的格式。
<video width="320" height="240" controls>
<source src=http://techslides.com/demos/sample-videos/small.webm type=video/webm>
<source src=http://techslides.com/demos/sample-videos/small.ogv type=video/ogg>
<source src=http://techslides.com/demos/sample-videos/small.mp4 type=video/mp4>
<source src=http://techslides.com/demos/sample-videos/small.3gp type=video/3gp>
Your browser does not support the video tag.
</video>
https://stackoverflow.com/questions/39179834
复制相似问题