html 里面镶嵌视频,一种是video,一种是iframe

版权声明: https://blog.csdn.net/qq_36100763/article/details/81093559

1,解决iframe不能全屏的问题

<iframe style="width:98%;height: 450px;" 
src='{$vo.url}' 
frameborder=0 
allowfullscreen="true"  
webkitallowfullscreen="true"
mozallowfullscreen="true">
</iframe>

主要是这三个属性:

allowfullscreen="true"  
webkitallowfullscreen="true"
mozallowfullscreen="true

2,视频地址要在各大视频网站里面的分享地址,才能播放

猜你喜欢

转载自blog.csdn.net/qq_36100763/article/details/81093559