2014-01-19 70 views

回答

0

Youtube提供了一个iframe,其中src指向仅包含视频的页面。

<iframe width="560" height="315" src="//www.youtube.com/embed/1PtR6qtdi1s" frameborder="0" allowfullscreen></iframe> 

您是否看到src等于? http://www.youtube.com/embed/1PtR6qtdi1s

明白吗?

0

在HTML5可以使用video tag.

<video width="320" height="240" controls> 
    <source src="src/to/video.mp4" type="video/mp4"> 
    Your browser doesn't support HTML5 VIDEO! 
</video> 

更改值所需要的宽度,高度,src和视频类型(它支持MP4,WEBM和OGG)。

相关问题