diff options
author | SeulGi Choi(Chase) <cs09gi@gmail.com> | 2021-09-28 10:56:05 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-28 10:56:05 +0900 |
commit | 7ce877f1f3fed0882e37753a37968f62c8ef618c (patch) | |
tree | 4c174e1b48bf062b7c1268fa7f218fe471ee8986 /files/ko | |
parent | 52e48a7ac7bfc64b78c5aabb86cab4c0d7b88054 (diff) | |
download | translated-content-7ce877f1f3fed0882e37753a37968f62c8ef618c.tar.gz translated-content-7ce877f1f3fed0882e37753a37968f62c8ef618c.tar.bz2 translated-content-7ce877f1f3fed0882e37753a37968f62c8ef618c.zip |
[ko] add DOMRect for ko (#2429)
* l10n: add DOMRect for ko
* fix typo
Co-authored-by: SoHyun Park <stitch.coding@gmail.com>
Co-authored-by: SoHyun Park <stitch.coding@gmail.com>
Diffstat (limited to 'files/ko')
-rw-r--r-- | files/ko/web/api/domrect/domrect/index.html | 57 | ||||
-rw-r--r-- | files/ko/web/api/domrect/index.html | 79 |
2 files changed, 136 insertions, 0 deletions
diff --git a/files/ko/web/api/domrect/domrect/index.html b/files/ko/web/api/domrect/domrect/index.html new file mode 100644 index 0000000000..d889ef40b5 --- /dev/null +++ b/files/ko/web/api/domrect/domrect/index.html @@ -0,0 +1,57 @@ +--- +title: DOMRect() +slug: Web/API/DOMRect/DOMRect +tags: + - API + - Constructor + - DOM Reference + - DOMRect + - Experimental + - Geometry + - Reference +browser-compat: api.DOMRect.DOMRect +--- +<p>{{APIRef("DOM")}}{{ SeeCompatTable() }}</p> + +<p><strong><code>DOMRect()</code></strong> 생성자는 새로운 {{domxref("DOMRect")}} 객체를 생성합니다.</p> + +<h2 id="Syntax">구문</h2> + +<pre class="brush: js">var myDOMRect = new DOMRect(x, y, width, height);</pre> + +<h3 id="Parameters">파라미터</h3> + +<dl> + <dt>x</dt> + <dd><code>DOMRect</code>의 오리진 <code>x</code>좌표.</dd> + <dt>y</dt> + <dd><code>DOMRect</code>의 오리진 <code>y</code>좌표.</dd> + <dt>width</dt> + <dd><code>DOMRect</code>의 너비.</dd> + <dt>height</dt> + <dd><code>DOMRect</code>의 높이.</dd> +</dl> + +<h2 id="Examples">예제</h2> + +<p>새로운 <code>DOMRect</code>를 생성하려면 다음과 같이 한 줄의 코드를 실행하면 됩니다.</p> + +<pre class="brush: js">myDOMRect = new DOMRect(0,0,100,100); +// 콘솔에서 'myDOMRect'를 실행하면 다음을 반환합니다 +// DOMRect { x: 0, y: 0, width: 100, height: 100, top: 0, right: 100, bottom: 100, left: 0 } +</pre> + +<h2 id="Specifications">명세</h2> + +{{Specifications}} + +<h2 id="Browser_compatibility">브라우저 호환성</h2> + +<p>{{Compat}}</p> + +<h2 id="See_also">같이 보기</h2> + +<ul> + <li>{{domxref("DOMPoint")}}</li> + <li>{{domxref("DOMRect")}}</li> +</ul> diff --git a/files/ko/web/api/domrect/index.html b/files/ko/web/api/domrect/index.html new file mode 100644 index 0000000000..960c33ca4f --- /dev/null +++ b/files/ko/web/api/domrect/index.html @@ -0,0 +1,79 @@ +--- +title: DOMRect +slug: Web/API/DOMRect +tags: + - API + - DOM + - DOM Reference + - DOMRect + - Geometry + - Geometry Interfaces + - Interface + - Rectangle + - Reference +browser-compat: api.DOMRect +--- +<p>{{draft}}{{APIRef("Geometry Interfaces")}}</p> + +<p><strong><code>DOMRect</code></strong>는 사각형의 크기와 위치를 나타냅니다.</p> + +<p><code>DOMRect</code>가 표현하는 박스의 타입은 이를 반환한 메서드나 속성에 의해 정해집니다. 예를 들어, WebVR API의 {{domxref("VREyeParameters.renderRect")}}는 렌더링되어야 할 헤드 마운트 디스플레이의 한쪽 눈에 대한 비주얼을 <a href="/ko/docs/Web/API/HTMLCanvasElement">canvas</a>의 뷰포트로 지정합니다.</p> + +<p>부모인 {{domxref("DOMRectReadOnly")}}로부터 상속받습니다.</p> + +<p>{{InheritanceDiagram}}</p> + +<h2 id="Constructor">생성자</h2> + +<dl> + <dt>{{domxref("DOMRect.DOMRect","DOMRect()")}}</dt> + <dd>새로운 <code>DOMRect</code> 객체를 생성합니다.</dd> +</dl> + +<h2 id="Properties">속성</h2> + +<p><em><code>DOMRect</code>는 부모인 {{domxref("DOMRectReadOnly")}}로부터 상속받습니다. 차이점은 DomRect가 더 이상 읽기 전용이 아니라는 것입니다.</em></p> + +<dl> + <dt>{{domxref("DOMRectReadOnly.x")}}</dt> + <dd><code>DOMRect</code>의 오리진(보통 사각형의 왼쪽 상단 코너) x 좌표.</dd> + <dt>{{domxref("DOMRectReadOnly.y")}}</dt> + <dd><code>DOMRect</code>의 오리진(보통 사각형의 왼쪽 상단 코너) y 좌표.</dd> + <dt>{{domxref("DOMRectReadOnly.width")}}</dt> + <dd><code>DOMRect</code>의 너비.</dd> + <dt>{{domxref("DOMRectReadOnly.height")}}</dt> + <dd><code>DOMRect</code>의 높이.</dd> + <dt>{{domxref("DOMRectReadOnly.top")}}</dt> + <dd><code>DOMRect</code>의 상단 좌표를 반환합니다(<code>height</code>가 음수라면 <code>y</code>, 또는 <code>y + height</code>와 같은 값을 갖습니다).</dd> + <dt>{{domxref("DOMRectReadOnly.right")}}</dt> + <dd><code>DOMRect</code>의 오른쪽 좌표를 반환합니다(<code>width</code>가 음수라면 <code>x + width</code>, 또는 <code>x</code>와 같은 값을 갖습니다).</dd> + <dt>{{domxref("DOMRectReadOnly.bottom")}}</dt> + <dd><code>DOMRect</code>의 하단 좌표를 반환합니다(<code>height</code>가 음수라면 <code>y + height</code>, 또는 <code>y</code>와 같은 값을 갖습니다).</dd> + <dt>{{domxref("DOMRectReadOnly.left")}}</dt> + <dd><code>DOMRect</code>의 왼쪽 좌표를 반환합니다(<code>width</code>가 음수라면 <code>x</code>, 또는 <code>x + width</code>와 같은 값을 갖습니다).</dd> +</dl> + +<h2 id="Methods">메서드</h2> + +<p><em><code>DOMRect</code>는 부모인 {{domxref("DOMRectReadOnly")}}로부터 메서드를 상속받습니다.</em></p> + +<h2 id="Static_methods">정적 메서드</h2> + +<dl> + <dt>{{domxref("DOMRectReadOnly.fromRect()")}}</dt> + <dd>주어진 위치와 면적을 갖는 새로운 <code>DOMRect</code> 객체를 생성합니다.</dd> +</dl> + +<h2 id="Specifications">명세</h2> + +{{Specifications}} + +<h2 id="Browser_compatibility">브라우저 호환성</h2> + +<p>{{Compat}}</p> + +<h2 id="See_also">같이 보기</h2> + +<ul> + <li>{{domxref("DOMPoint")}}</li> +</ul> |