使用video.js时,iframe内嵌视频无法全屏的问题

来源:互联网 发布:管家婆软件的优缺点 编辑:程序博客网 时间:2024/06/05 16:43

为iframe添加allowfullscreen属性即可, 如下所示

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

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

1 0
原创粉丝点击