天天看點

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

繼續閱讀