获取当前处于全屏模式的元素:
var elem = document.fullscreenElement;
fullscreenElement 属性返回以全屏模式显示的当前元素,或者无效的当不是全屏时。
提示:使用元素.requestFullscreen()方法以全屏模式查看元素。
提示:使用元素.exitFullscreen()取消全屏模式的方法。
表中的数字指定完全支持该属性的第一个浏览器版本。笔记:有些浏览器需要特定的前缀(见括号):
Property | |||||
---|---|---|---|---|---|
fullscreenElement | 71.0 45.0 (webkit) |
79.0 11.0 (ms) |
64.0 47.0 (moz) |
5.1 (webkit) | 40.0 (webkit) |
使用跨浏览器代码的前缀:
if (
document.fullscreenElement || /* Standard syntax */
document.webkitFullscreenElement || /* Safari and Opera syntax */
document.msFullscreenElement /* IE11 syntax */
) {
...
}
document.fullscreenElement
返回值: | 返回元素当前处于全屏模式,或者无效的如果全屏模式不可用 |
---|
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!