本文主要讲述了:

  1. 什么是document.fullscreenEnabled
  2. 作用
  3. 兼容性

正文

什么是document.fullscreenEnabled

document.fullscreenEnableddocument的属性。

作用

是否支持全屏模式。

兼容性

  • IE 11+ 使用document.msFullscreenEnabled大专栏  JavaScript中的document.fullscreenEnabledde>
  • Edge 使用document.webkitFullscreenEnabled
  • Firefox 低版本使用document.mozFullScreenEnabled(注意Screen中S的大小写)
  • Chrome 低版本使用document.webkitFullscreenEnabled

参考资料

.post-copyright {
margin: 2em 0 0;
padding: 0.5em 1em;
border-left: 3px solid #ff1700;
background-color: #f9f9f9;
list-style: none !important;
}

05-11 09:33