检查浏览器是否全屏显示

检查浏览器是否全屏显示

本文介绍了检查浏览器是否全屏显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞!有没有办法检查浏览器目前是否处于全屏模式(用户按下f11后)?Is there a way to check if a browser is currently in fullscreen mode (after the user pressed f11)?类似:if (window.fullscreen) { // it's fullscreen!}else { // not fs!}谢谢。 Steerpike的答案非常好,但是我的评论:Steerpike's answer is pretty good, but my comment:推荐答案在Firefox 3中,window.fullScreen工作( https://developer.mozilla.org/en/DOM/window.fullScreen ) 。In Firefox 3, window.fullScreen works (https://developer.mozilla.org/en/DOM/window.fullScreen).所以,你可以这样做:if((window.fullScreen) || (window.innerWidth == screen.width && window.innerHeight == screen.height)) {} else {} 这篇关于检查浏览器是否全屏显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-13 14:42