天天看点

videojs播放器iframe无法全屏

iframe添加

allowfullscreen

属性即可, 如下所示

<iframe src="video.html" 
	frame 
	width="100%" 
	height="100%" 
	scrolling="no" 
	allowfullscreen="true" 
	webkitallowfullscreen="true"
	mozallowfullscreen="true"></iframe>
           

参考: video.js inside a modal window: full screen not working

继续阅读