Window.screen
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Please take two minutes to fill out our short survey.
Window
の screen
プロパティは、ウィンドウに関連付けられた画面オブジェクトへの参照を返します。 screen
オブジェクトは Screen
インターフェイスを実装しており、現在のウィンドウがレンダリングされている画面のプロパティを検査するための特別なオブジェクトです。
構文
let screenObj = window.screen;
例
js
if (screen.pixelDepth < 8) {
// use low-color version of page
} else {
// use regular, colorful page
}
仕様書
Specification |
---|
CSSOM View Module # dom-window-screen |