HTML5-全屏接口-使用

全屏操作的主要方法和属性
1.requestFullScreen():开启全屏显示
不同浏览器需要添加不同的前缀
chrome:webkit firefox:moz ie:ms opera:o
2.cancelFullScreen():退出全屏显示 :也要添加前缀,在不同的浏览器下,退出全屏只能使用document来实现
3.fullScreenElement:是否是全屏状态 ,也只能使用document进行判断

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <div>
        <img src="../img/2.png" alt="" width="300" height="300">
        <input type="button" id="full" value="全屏">
        <input type="button" id="cancelFull" value="退出全屏">
        <input type="button" id="isFull" value="是否全屏">
    </div>
    <script>
     
        window.onload = function() {
         	 /* 添加三个按钮的点击事件 */
            var div = document.querySelector("div");
      
            // /* 全屏操作 */
            document.querySelector("#full").onclick = function() {
              
                // /* 使用能力测试添加不同浏览器下的前缀 */
                if (div.requestFullScreen) {
                    div.requestFullScreen();
                } else if (div.webkitRequestFullScreen) {
                    div.webkitRequestFullScreen();
                } else if (div.mozRequestFullScreen) {
                    div.mozRequestFullScreen();
                } else if (div.msRequestFullScreen) {
                    div.msRequestFullScreen();
                }
            }


            // 推出全屏操作
            document.querySelector("#cancelFull").onclick = function() {

                if (document.cancelFullScreen) {
                    document.cancelFullFullScreen();
                } else if (document.webkitCancelFullScreen) {
                    document.webkitCancelFullScreen();
                } else if (document.mozCancelFullScreen) {
                    document.mozCancelFullScreen();
                } else if (document.msCancelFullScreen) {
                    documentiv.msCancelFullScreen();
                }
            }

            // 判断是否是全屏状态
            document.querySelector("#isFull").onclick = function() {
                // 两个细节:使用document判断 能力测试
                if (document.fullscreenElement || document.webkitFullscreenElement || document.mozFullScreenElement || document.msFullscreenElement) {
                    alert(true);
                    console.log(1);
                } else {
                    alert(false);
                }
            }
        }
    </script>
</body>

</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值