html 添加视频

来源:互联网 发布:如果黄家驹还活着知乎 编辑:程序博客网 时间:2024/06/10 17:03

方法一:

object对象,播放flash

<object data="intro.swf" height="200" width="200"></object>


方法二:

embed对象,播放flash

<embed src="intro.swf" height="200" width="200">


方法三:

video对象播放视频

<video width="640" height="480" controls>
  <source src="1.mp4" type="video/mp4">
  <source src="1.ogg" type="video/ogg">
  <source src="1.webm" type="video/webm">
  <object data="1.mp4" width="640" height="480">
    <embed src="1.swf" width="320" height="240">
  </object>
</video>

0 0
原创粉丝点击