記一個embed嵌入flash、mp4
阿新 • • 發佈:2018-11-03
flash
首先說明,嵌入flash有個不好的地方,出chrome外的瀏覽器,嵌入flash會有廣告!所以,謹慎使用。
<embed src="https://imgcache.qq.com/tencentvideo_v1/playerv3/TPout.swf?max_age=86400&v=20161117&vid=k0530mizher&auto=0"
allowfullscreen="true"
quality="high"
width="480" height="400"
align="middle"
allowscriptaccess="always"
type="application/x-shockwave-flash">
src是flash地址
type可以設定MIME
型別,什麼是MIME型別?
allowfullscreen="true"
設定是否可以全屏操作
MP4
<embed src="http://ph35djdp3.bkt.clouddn.com/lonely.mp4"
width="480px" height="400"
align ="middle"
type="video/mp4">
只需修改type
為"video/mp4"
然後,src修改為.mp4視訊即可。
如果,type設定為type="video/mp4"
它會有自動播放屬性:autostart="true"
,而且,無法禁止查了很多資料就是禁不了,另外mp4
的播放沒有全屏屬性的定義~ 意味著全屏操作,你需要另找方法~
END