方法:1、使用
在HTML中插入影片的方法主要有三種:
1、使用
html
#
<video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> 您的浏览器不支持 video 标签。 </video>
2、使用
html
<embed src="movie.swf" width="320" height="240">
3、使用
html
#
<object data="movie.swf" width="320" height="240"> 您的浏览器不支持 object 标签。 </object>
總的來說,使用
以上是html插入影片的方法有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!