最近做了个页面中有视频播放器,点击全屏按钮可以全屏,但是把页面链接提供给第三方系统用iframe去访问时,全屏功能失效,
后来发现是iframe的问题,iframe默认不能全屏需要添加allowfullscreen="true"属性才支持全屏
<iframe style="width:100%;height:100%"
allowfullscreen="true"
webkitallowfullscreen="true"
mozallowfullscreen="true"
oallowfullscreen="true"
msallowfullscreen="true"
src="http://localhost:8080"></iframe>
网友评论