aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/screen
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/api/screen')
-rw-r--r--files/ko/web/api/screen/index.html76
-rw-r--r--files/ko/web/api/screen/index.md75
2 files changed, 75 insertions, 76 deletions
diff --git a/files/ko/web/api/screen/index.html b/files/ko/web/api/screen/index.html
deleted file mode 100644
index 74772f16d3..0000000000
--- a/files/ko/web/api/screen/index.html
+++ /dev/null
@@ -1,76 +0,0 @@
----
-title: Screen
-slug: Web/API/Screen
-tags:
- - API
-translation_of: Web/API/Screen
----
-<div>{{APIRef("CSSOM View")}}</div>
-
-<p>The <code>Screen</code> interface represents a screen, usually the one on which the current window is being rendered.</p>
-
-<p>Usually it is the one on which the current window is being rendered, obtained using <code>window.screen</code>.</p>
-
-<h2 id="Example" name="Example">Properties</h2>
-
-<dl>
- <dt>{{domxref("Screen.availTop")}}</dt>
- <dd>Specifies the y-coordinate of the first pixel that is not allocated to permanent or semipermanent user interface features.</dd>
- <dt>{{domxref("Screen.availLeft")}}</dt>
- <dd>Returns the first available pixel available from the left side of the screen.</dd>
- <dt>{{domxref("Screen.availHeight")}}</dt>
- <dd>Specifies the height of the screen, in pixels, minus permanent or semipermanent user interface features displayed by the operating system, such as the Taskbar on Windows.</dd>
- <dt>{{domxref("Screen.availWidth")}}</dt>
- <dd>Returns the amount of horizontal space in pixels available to the window.</dd>
- <dt>{{domxref("Screen.colorDepth")}}</dt>
- <dd>Returns the color depth of the screen.</dd>
- <dt>{{domxref("Screen.height")}}</dt>
- <dd>Returns the height of the screen in pixels.</dd>
- <dt>{{domxref("Screen.left")}}</dt>
- <dd>Returns the distance in pixels from the left side of the main screen to the left side of the current screen.</dd>
- <dt>{{domxref("Screen.orientation")}}</dt>
- <dd>Returns the current orientation of the screen.</dd>
- <dt>{{domxref("Screen.pixelDepth")}}</dt>
- <dd>Gets the bit depth of the screen.</dd>
- <dt>{{domxref("Screen.top")}}</dt>
- <dd>Returns the distance in pixels from the top side of the current screen.</dd>
- <dt>{{domxref("Screen.width")}}</dt>
- <dd>Returns the width of the screen.</dd>
- <dt>{{domxref("Screen.mozEnabled")}} {{gecko_minversion_inline("12.0")}}</dt>
- <dd>Boolean. Setting to false will turn off the device's screen.</dd>
- <dt>{{domxref("Screen.mozBrightness")}} {{gecko_minversion_inline("12.0")}}</dt>
- <dd>Controls the brightness of a device's screen. A double between 0 and 1.0 is expected.</dd>
-</dl>
-
-<h3 id="Events_handler">Events handler</h3>
-
-<dl>
- <dt>{{domxref("Screen.onorientationchange")}}</dt>
- <dd>A handler for the {{event("orientationchange")}} events.</dd>
-</dl>
-
-<h2 id="Methods">Methods</h2>
-
-<dl>
- <dt>{{domxref("Screen.lockOrientation")}}</dt>
- <dd>Lock the screen orientation (only works in fullscreen or for installed apps)</dd>
- <dt>{{domxref("Screen.unlockOrientation")}}</dt>
- <dd>Unlock the screen orientation (only works in fullscreen or for installed apps)</dd>
-</dl>
-
-<p>Methods inherit from {{domxref("EventTarget")}}</p>
-
-<p>{{page("/en-US/docs/Web/API/EventTarget","Methods")}}</p>
-
-<h2 id="Example" name="Example">Example</h2>
-
-<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>CSSOM View</p>
diff --git a/files/ko/web/api/screen/index.md b/files/ko/web/api/screen/index.md
new file mode 100644
index 0000000000..2d61c9408a
--- /dev/null
+++ b/files/ko/web/api/screen/index.md
@@ -0,0 +1,75 @@
+---
+title: Screen
+slug: Web/API/Screen
+tags:
+ - API
+ - CSSOM View
+ - Interface
+ - Reference
+browser-compat: api.Screen
+translation_of: Web/API/Screen
+---
+{{APIRef("CSSOM")}}
+
+The `Screen` interface represents a screen, usually the one on which the current window is being rendered, and is obtained using {{DOMxRef("window.screen")}}.
+
+Note that browsers determine which screen to report as current by detecting which screen has the center of the browser window.
+
+## Properties
+
+- {{DOMxRef("Screen.availTop")}} {{Non-standard_Inline}}
+ - : Specifies the y-coordinate of the first pixel that is not allocated to permanent or semipermanent user interface features.
+- {{DOMxRef("Screen.availLeft")}} {{Non-standard_Inline}}
+ - : Returns the first available pixel available from the left side of the screen.
+- {{DOMxRef("Screen.availHeight")}}
+ - : Specifies the height of the screen, in pixels, minus permanent or semipermanent user interface features displayed by the operating system, such as the Taskbar on Windows.
+- {{DOMxRef("Screen.availWidth")}}
+ - : Returns the amount of horizontal space in pixels available to the window.
+- {{DOMxRef("Screen.colorDepth")}}
+ - : Returns the color depth of the screen.
+- {{DOMxRef("Screen.height")}}
+ - : Returns the height of the screen in pixels.
+- {{DOMxRef("Screen.left")}} {{Non-standard_Inline}}
+ - : Returns the distance in pixels from the left side of the main screen to the left side of the current screen.
+- {{DOMxRef("Screen.orientation")}}
+ - : Returns the {{DOMxRef("ScreenOrientation")}} instance associated with this screen.
+- {{DOMxRef("Screen.pixelDepth")}}
+ - : Gets the bit depth of the screen.
+- {{DOMxRef("Screen.top")}} {{deprecated_inline}}{{Non-standard_Inline}}
+ - : Returns the distance in pixels from the top side of the current screen.
+- {{DOMxRef("Screen.width")}}
+ - : Returns the width of the screen.
+- {{DOMxRef("Screen.mozEnabled")}} {{Non-standard_Inline}} {{Deprecated_Inline}}
+ - : Boolean. Setting to false will turn off the device's screen.
+- {{DOMxRef("Screen.mozBrightness")}} {{Non-standard_Inline}} {{Deprecated_Inline}}
+ - : Controls the brightness of a device's screen. A double between 0 and 1.0 is expected.
+
+### Events handler
+
+- {{DOMxRef("Screen.onorientationchange")}} {{Deprecated_Inline}}
+ - : A handler for the {{Event("orientationchange")}} event.
+
+## Methods
+
+- {{DOMxRef("Screen.lockOrientation")}} {{Non-standard_Inline}} {{Deprecated_Inline}}
+ - : Lock the screen orientation (only works in fullscreen or for installed apps)
+- {{DOMxRef("Screen.unlockOrientation")}} {{Non-standard_Inline}} {{Deprecated_Inline}}
+ - : Unlock the screen orientation (only works in fullscreen or for installed apps)
+
+## Example
+
+```js
+if (screen.pixelDepth < 8) {
+ // use low-color version of page
+} else {
+ // use regular, colorful page
+}
+```
+
+## Specifications
+
+{{Specifications}}
+
+## Browser compatibility
+
+{{Compat}}