js全屏和退出全屏代码

news/2024/11/24 13:28:34/
方法名(){var docElm = document.documentElement; if(sessionStorage.getItem('f11') == null){if (docElm.requestFullscreen) {  docElm.requestFullscreen(); sessionStorage.setItem('f11',1) }  //FireFox   else if (docElm.mozRequestFullScreen) {  docElm.mozRequestFullScreen(); sessionStorage.setItem('f11',1)  }   //Chrome等   else if (docElm.webkitRequestFullScreen) {  docElm.webkitRequestFullScreen();  sessionStorage.setItem('f11',1) } }else{if (document.exitFullscreen) {  document.exitFullscreen();  sessionStorage.removeItem('f11') }  else if (document.mozCancelFullScreen) {  document.mozCancelFullScreen(); sessionStorage.removeItem('f11') }  else if (document.webkitCancelFullScreen) {  document.webkitCancelFullScreen();sessionStorage.removeItem('f11')  }  else if (document.msExitFullscreen) {  document.msExitFullscreen();  sessionStorage.removeItem('f11')}  }
}

http://www.ppmy.cn/news/688524.html

相关文章

JS进入和退出全屏方法

1 原生方法 // 进入全屏 document.documentElement.requestFullscreen() // 推出全屏发方法 document.exiFullscreen()2 screenfull 插件 if(!Screenfull.isEnable) {this.$message.warning(当前全屏功能不可用)return}Screenfull.toggle() // 既可以全屏也可以退出全屏

VScode退出全屏

好家伙,我就随便点着玩,然后退出不了了,网上说按F11就行,我按半天了,只能调亮度,无了个大语,结果我这个猪脑子,按F类型的键得Fn,就在Ctrl旁边,我半天都没看见…

vncviewer退出全屏

很隐蔽,很难找到。 1、vnc全屏时,双击win键(windows图标,一般在键盘左下角,ctl键旁边),或者ctl双击Esc键,或者 wind(显示桌面) 都可以显示windows任务栏。 …

ie退出全屏快捷键_QuickTime Player 键盘快捷键与手势全在这里了

使用键盘、触控板或 Magic Mouse 鼠标在 QuickTime Player 中快速完成多项操作任务。 基本任务的快捷键盘 Option-Command-N 新建影片录制 Control-Option-Command-N 新建音频录制 Control-Command-N 新建屏幕录制 Command-O 打开文件 Command-L使用 URL 打开位置 Command-W 关…

【VScode】退出全屏和使用全屏

文章目录 基本用法 基本用法 有时候不小心瞎按到了什么,导致vscode全屏了,这时候想要退出却找不到方式,这就有的尴尬了,最后发现其实只要按F11快捷键就可以自动切换全屏了 在【查看】中找到【外观】,再在里面找到【全屏…

进入全屏和退出全屏

第一种&#xff1a; //全屏 $("#fsc").on("click","#fullsc",function(){$(".judgementArea").addClass("fullscreenclass");$(".fullScreen,.page-header.navbar-fixed-top,.fullScreen").hide();var html <…

putty 全屏/退出全屏 快捷键

看图就够了 ╮(&#xffe3;▽&#xffe3;")╭ 值得注意的是: 记得修改后要保存 Session 设置;每个都要修改/保存;得登录后才能用.

按手机返回键APP直接退出问题

最近vue做个项目&#xff0c;通过HBuilder打包之后发现按手机的返回键应用直接退出了&#xff0c;而不是返回上一页&#xff0c;为此&#xff0c;特意解决了这一问题&#xff0c;具体代码如下&#xff1a; document.addEventListener(plusready, function() {var webview plus…