美文网首页
iframe中的页面requestFullScreen不能全屏问

iframe中的页面requestFullScreen不能全屏问

作者: 21度C | 来源:发表于2020-12-30 10:50 被阅读0次

    最近做了个页面中有视频播放器,点击全屏按钮可以全屏,但是把页面链接提供给第三方系统用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>
    

    相关文章

      网友评论

          本文标题:iframe中的页面requestFullScreen不能全屏问

          本文链接:https://www.haomeiwen.com/subject/mhocoktx.html