是否可以禁用"您已经全屏显示" javascript或jquery中的通知?

时间:2015-01-23 17:17:10

标签: javascript jquery html html5

我正在构建一个HTML5游戏,但是如果我将游戏设置为全屏,如果我的光标位于顶部则显示该通知?
我使用它将其设置为全屏:

function toggleFullScreen() {
      if (!document.fullscreenElement &&
          !document.mozFullScreenElement && !document.webkitFullscreenElement && !document.msFullscreenElement ) {
        if (document.documentElement.requestFullscreen) {
          document.documentElement.requestFullscreen();
        } else if (document.documentElement.msRequestFullscreen) {
          document.documentElement.msRequestFullscreen();
        } else if (document.documentElement.mozRequestFullScreen) {
          document.documentElement.mozRequestFullScreen();
        } else if (document.documentElement.webkitRequestFullscreen) {
          document.documentElement.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT);
        }
      } else {
        if (document.exitFullscreen) {
          document.exitFullscreen();
        } else if (document.msExitFullscreen) {
          document.msExitFullscreen();
        } else if (document.mozCancelFullScreen) {
          document.mozCancelFullScreen();
        } else if (document.webkitExitFullscreen) {
          document.webkitExitFullscreen();
        }
      }
    }

谢谢!

3 个答案:

答案 0 :(得分:6)

据我所知, 。浏览器处理该通知的显示,以防止网站通过全屏而不通知他们来利用用户,而不是向他们展示如何关闭它或允许他们使用。

查看此答案以获取更深入的信息: https://superuser.com/questions/398945/disable-the-youve-gone-full-screen-notification-in-chrome

另外:https://groups.google.com/a/webmproject.org/forum/#!topic/webm-discuss/5vtRCwu50ZU

答案 1 :(得分:2)

我认为,根据设计,不可能使应用程序无法为了恶意目的而占用屏幕。

答案 2 :(得分:1)

不,你不能 ..它是浏览器的默认功能之一。它是浏览器中实现的安全功能之一..

在此处查看更多https://groups.google.com/a/webmproject.org/forum/#!topic/webm-discuss/5vtRCwu50ZU