aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/domrectreadonly/index.html
blob: 7d32eba68dd7ec3c0c5e967d008c0bd76f47c2ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
title: DOMRectReadOnly
slug: Web/API/DOMRectReadOnly
translation_of: Web/API/DOMRectReadOnly
---
<p>{{APIRef("Geometry Interfaces")}}</p>

<p><strong><code>DOMRectReadOnly</code></strong> 接口通过详细列出 {{domxref("DOMRect")}} 所使用的标准属性来定义一个属性不可变的矩形。</p>

<h2 id="构造函数">构造函数</h2>

<dl>
 <dt>{{domxref("DOMRectReadOnly.DOMRectReadOnly","DOMRectReadOnly()")}}</dt>
 <dd>用来创建新的 <code>DOMRectReadOnly</code> 对象,但请注意,该构造函数不能由第三方 JavaScript 调用:这样做将返回 “Illegal constructor” 类型错误。</dd>
</dl>

<h2 id="属性">属性</h2>

<dl>
</dl>

<dl>
 <dt>{{domxref("DOMRectReadOnly.x")}} {{readonlyInline}}</dt>
 <dd><code>DOMRect</code> 原点的 x 坐标。</dd>
 <dt>{{domxref("DOMRectReadOnly.y")}} {{readonlyInline}}</dt>
 <dd><code>DOMRect</code> 原点的 y 坐标。</dd>
 <dt>{{domxref("DOMRectReadOnly.width")}} {{readonlyInline}}</dt>
 <dd><code>DOMRect</code> 的宽度。</dd>
 <dt>{{domxref("DOMRectReadOnly.height")}} {{readonlyInline}}</dt>
 <dd><code>DOMRect</code> 的高度。</dd>
 <dt>{{domxref("DOMRectReadOnly.top")}} {{readonlyInline}}</dt>
 <dd>返回 <code>DOMRect</code> 的顶部坐标值(通常与 <code>y</code> 相同)。</dd>
 <dt>{{domxref("DOMRectReadOnly.right")}} {{readonlyInline}}</dt>
 <dd>返回 <code>DOMRect</code> 的右坐标值(通常与 <code>x + width</code> 相同)。</dd>
 <dt>{{domxref("DOMRectReadOnly.bottom")}} {{readonlyInline}}</dt>
 <dd>返回 <code>DOMRect</code> 的底部坐标值(通常与 <code>y + height</code> 相同)。</dd>
 <dt>{{domxref("DOMRectReadOnly.left")}} {{readonlyInline}}</dt>
 <dd>返回 <code>DOMRect</code> 的左坐标值(通常与 <code>x​​​​​​​</code> 相同)。</dd>
</dl>

<h2 id="静态方法">静态方法</h2>

<dl>
 <dt>{{domxref("DOMRectReadOnly.fromRect()")}}</dt>
 <dd>使用指定的位置和尺寸创建一个新的 <code>DOMRect</code> 对象。</dd>
</dl>

<h2 id="Specification" name="Specification">规范</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('Geometry Interfaces', '#DOMRect', 'DOMRectReadOnly')}}</td>
   <td>{{Spec2('Geometry Interfaces')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

<div>


<p>{{Compat("api.DOMRectReadOnly")}}</p>
</div>

<h2 id="其他">其他</h2>

<ul>
 <li>{{domxref("DOMPoint")}}</li>
</ul>