屏幕详细信息:currentScreen 属性

实验性:这是一个实验性技术
在生产环境中使用之前,请仔细查看浏览器兼容性表

安全上下文:此功能仅在安全上下文(HTTPS)中可用,在某些或所有支持的浏览器中。

currentScreenScreenDetails接口的只读属性,它包含一个ScreenDetailed对象,该对象代表当前浏览器窗口显示在其上的屏幕的详细信息。

价值

一个ScreenDetailed对象。

示例

js
// Utility function for opening new windows
function openWindow(left, top, width, height, url) {
  const windowFeatures = `left=${left},top=${top},width=${width},height=${height}`;
  return window.open(url, "_blank", windowFeatures);
}

// Open a new window that fills the available area of the current screen.
const currentScreen = (await window.getScreenDetails()).currentScreen;
console.log(`Opening a window to fill screen ${currentScreen.label}`);
const windowRef = openWindow(
  currentScreen.availLeft,
  currentScreen.availTop,
  currentScreen.availWidth,
  currentScreen.availHeight,
  url,
);

规范

规范
窗口管理
# ref-for-dom-screendetails-currentscreen

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅