According to this documentation, Internet Explorer does not support something like webkitIsFullScreen
or like mozFullScreen
property. I need to read if browser is in full screen mode. Is there any way to get it on IE somehow?
THANKS!
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Using IE11, an equivalent check would be:
document.msFullscreenElement !== null
Disclosure: I am on the team that worked on Microsoft's implementation of the Fullscreen API.