blob: e001d4e951d16a48bcb0ac98c3c3b0f5c1378479 (
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
|
---
title: HTMLElement.offsetTop
slug: Web/API/HTMLElement/offsetTop
translation_of: Web/API/HTMLElement/offsetTop
---
<div>
<div>{{ APIRef("HTML DOM") }}</div>
</div>
<p><strong><code>HTMLElement.offsetTop - </code></strong><code>свойство элемента доступно только для чтения,</code> возвращает расстояние текущего элемента по отношению к верхней части {{domxref("HTMLelement.offsetParent","offsetParent")}} узла.</p>
<h2 id="Syntax" name="Syntax">Синтаксис</h2>
<pre class="syntaxbox"><var>topPos</var> = element.offsetTop;
</pre>
<h3 id="Parameters" name="Parameters">Параметры</h3>
<ul>
<li><code>topPos</code> - <code>это количество пикселей на которые делается отступ сверху, отсносительно родительского элемента.</code></li>
</ul>
<h2 id="Example" name="Example">Пример</h2>
<pre class="brush:js">var d = document.getElementById("div1");
var topPos = d.offsetTop;
if (topPos > 10) {
// объект имеет отступ больше
// чем 10 пикселей относительно своего родителя
}</pre>
<h2 id="Specification" name="Specification">Спецификация</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Спецификация</th>
<th scope="col">Статус</th>
<th scope="col">Комментарии</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSSOM View', '#dom-htmlelement-offsettop', 'offsetTop')}}</td>
<td>{{Spec2('CSSOM View')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Compatibility" name="Compatibility">Совместимость с браузерами</h2>
<p>{{Compat("api.HTMLElement.offsetTop")}}</p>
|