最近做了個頁面中有視頻播放器震捣,點(diǎn)擊全屏按鈕可以全屏,但是把頁面鏈接提供給第三方系統(tǒng)用iframe去訪問時,全屏功能失效船庇,
后來發(fā)現(xiàn)是iframe的問題,iframe默認(rèn)不能全屏需要添加allowfullscreen="true"屬性才支持全屏
<iframe style="width:100%;height:100%"
allowfullscreen="true"
webkitallowfullscreen="true"
mozallowfullscreen="true"
oallowfullscreen="true"
msallowfullscreen="true"
src="http://localhost:8080"></iframe>