标签: javascript
在Firefox 56.x中,window.fullscreen表示浏览器是否处于全屏状态。如何在Chrome中检测相同内容?
window.fullscreen
注意:假设全屏由F11 ||触发Cmd + Shift + Enter,而不是通过任何document方法以编程方式。
F11
Cmd + Shift + Enter
document
答案 0 :(得分:1)
一个不错的解决方法可能是查看screen.width === window.outerWidth && screen.height === window.outerHeight。
screen.width === window.outerWidth && screen.height === window.outerHeight