gpt4 book ai didi

javascript - document.fullScreen 歌剧

转载 作者:行者123 更新时间:2023-11-30 05:47:33 26 4
gpt4 key购买 nike

我正在尝试获取全屏模式的状态。脚本在除 Opera 之外的所有浏览器中都可以正常工作。如何解决?

$(document).bind('webkitfullscreenchange mozfullscreenchange fullscreenchange',function(){
if(document.fullScreen||document.mozFullScreen||document.webkitIsFullScreen){
console.log(' Enter Fullscreen ');
}else{
console.log(' Exit Fullscreen ');
}
});

最佳答案

目前,您正在使用非标准方式来实现此目的(mozFullScreen 等),according to the documentation .

在 Firefox、Safari、Chrome 和 Opera 12.10 中,document.fullscreenElement 是标准,将实现您想要的。

但是,在较新版本的 Opera 中,似乎存在一些关于 fullscreenElement 的错误(参见 here here )。

在较新版本的 Opera 中解决这些错误的方法是改用 document.requestFullscreen

关于javascript - document.fullScreen 歌剧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17128054/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com