aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/window/screen/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/api/window/screen/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/web/api/window/screen/index.html')
-rw-r--r--files/zh-cn/web/api/window/screen/index.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/window/screen/index.html b/files/zh-cn/web/api/window/screen/index.html
new file mode 100644
index 0000000000..699d85d5c7
--- /dev/null
+++ b/files/zh-cn/web/api/window/screen/index.html
@@ -0,0 +1,32 @@
+---
+title: Window.screen
+slug: Web/API/Window/screen
+tags:
+ - screen
+translation_of: Web/API/Window/screen
+---
+<div>{{APIRef("CSSOM View")}}</div>
+
+<p>返回当前window的screen对象。screen对象实现了{{domxref("Screen")}}接口,它是个特殊的对象,返回当前渲染窗口中和屏幕有关的属性。</p>
+
+<h2 id="Syntax" name="Syntax">语法</h2>
+
+<pre class="syntaxbox"><var>screenObj</var> = <var>window</var>.screen;
+</pre>
+
+<p> </p>
+
+<h2 id="Example" name="Example">示例</h2>
+
+<p> </p>
+
+<pre class="brush:js">if (screen.pixelDepth &lt; 8) {
+ // use low-color version of page
+} else {
+ // use regular, colorful page
+}
+</pre>
+
+<h2 id="Specification" name="Specification">Specification</h2>
+
+<p>TBD</p>