js某个元素全屏操作

前端代码

<div id="screenshow" class="k1-r" style="margin-left:14.6%;height: 100%">
    <div class="screenBtn">
        <button class="full-screen-btn">全屏</button>
    </div>
    <div id="screenframeDiv" style="width: 100%;height: 100%">
        <iframe id="screenframe" src="http://61.164.243.115:8080/dist3/#/kxrhxxpt/page1" frameborder="0" height="100%" width="100%"></iframe>
    </div>
</div>

js代码

  function isFullscreen(){
            return document.fullscreenElement    ||
                   document.msFullscreenElement  ||
                   document.mozFullScreenElement ||
                   document.webkitFullscreenElement || false;
        }
    window.onresize = function() {   //全屏的esc 做的一些处理
        console.log(222222);
        var isfull = isFullscreen();
        console.log(isfull);
         if (!isfull) {
             console.log(11111);
            //触发esc事件,执行业务逻辑。
                $('.full-screen-btn').text("全屏");
         }
      };

    //js code
function fullScreen(el) {
    var rfs = el.requestFullScreen || el.webkitRequestFullScreen || el.mozRequestFullScreen || el.msRequestFullScreen,
        wscript;
    if(typeof rfs != "undefined" && rfs) {
        rfs.call(el);
        return;
    }
    if(typeof window.ActiveXObject != "undefined") {
        wscript = new ActiveXObject("WScript.Shell");
        if(wscript) {
            wscript.SendKeys("{F11}");
        }
    }
}
function exitFullScreen(el) {
    var el= document,
        cfs = el.cancelFullScreen || el.webkitCancelFullScreen || el.mozCancelFullScreen || el.exitFullScreen,
        wscript;
    if (typeof cfs != "undefined" && cfs) {
      cfs.call(el);
      return;
    }
    if (typeof window.ActiveXObject != "undefined") {
        wscript = new ActiveXObject("WScript.Shell");
        if (wscript != null) {
            wscript.SendKeys("{F11}");
        }
  }
}
// var btn = document.getElementById('btn');
var content = document.getElementById('screenshow');   //被全屏显示的元素
$('.full-screen-btn').on('click',function(){
    var btntext = $(this).text();
    if(btntext == "全屏"){
         fullScreen(content);
        var screenSrc = document.getElementById('screenframe').src;
        $('#screenframeDiv').html('<iframe id="screenframe" src="'+screenSrc+'" frameborder="0" height="100%" width="100%"></iframe>');
        $(this).text("退出全屏");
    }else{
        exitFullScreen(content);

         var screenSrc = document.getElementById('screenframe').src;
        $('#screenframeDiv').html('<iframe id="screenframe" src="'+screenSrc+'" frameborder="0" height="100%" width="100%"></iframe>');
        $(this).text("全屏");
    }
});

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值