html网页中显示并且播放一个视频,+播放一个音频

//src 为视频路径      height 为视频高度            width为视频宽度

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

//<object> 标签的作用是在 HTML 页面中嵌入多个视频

<object data="movie.mp4" width="320" height="240">

           <embed src="movie.swf" width="320" height="240">

           <embed src="movie.swf" width="320" height="240">

           <embed src="movie.swf" width="320" height="240">

</object>

-------------------------------------------------------------------------播放音频----------------------------------------------------------------------------------

//src 音频文件的路径        control 属性供添加播放、暂停和音量控件。

<audio src="song.ogg" controls="controls"></audio>

------------------------------------------------------------------------------------------------

<audio controls="controls">
  <source src="song.ogg" type="audio/ogg">
  <source src="song.mp3" type="audio/mpeg">
</audio>

猜你喜欢

转载自blog.csdn.net/Developersq/article/details/82978424