blob: 5f67f869be937f1b3c4ebff3eebf20a9e365b262 (
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
|
---
title: IntersectionObserverEntry
slug: Web/API/IntersectionObserverEntry
translation_of: Web/API/IntersectionObserverEntry
---
<div>{{SeeCompatTable}}{{APIRef("Intersection Observer API")}}</div>
<p><span class="seoSummary"><a href="/ja/docs/Web/API/Intersection_Observer_API">Intersection Observer API</a> の <code><strong>IntersectionObserverEntry</strong></code> インターフェイスは、特定の遷移時点でのターゲット要素とそのルートコンテナ間の共通部分を記述します。</span> <code>IntersectionObserverEntry</code> のインスタンスは、その <code>entries</code> パラメータで {{domxref("IntersectionObserver")}} コールバックに渡されます。それ以外の場合、これらのオブジェクトは {{domxref("IntersectionObserver.takeRecords()")}} を呼び出すことによってのみ取得できます。</p>
<h2 id="プロパティ">プロパティ</h2>
<dl>
<dt>{{domxref("IntersectionObserverEntry.boundingClientRect")}} {{readonlyinline}}</dt>
<dd>ターゲット要素の矩形の境界を {{domxref("DOMRectReadOnly")}} として返します。境界は {{domxref("Element.getBoundingClientRect()")}} のドキュメントで説明されているのと同様に計算されます。</dd>
<dt>{{domxref("IntersectionObserverEntry.intersectionRatio")}} {{readonlyinline}}</dt>
<dd><code>intersectionRect</code> と <code>boundingClientRect</code> の比率を返します。</dd>
<dt>{{domxref("IntersectionObserverEntry.intersectionRect")}} {{readonlyinline}}</dt>
<dd>ターゲットの表示領域を表す {{domxref("DOMRectReadOnly")}} を返します。</dd>
<dt>{{domxref("IntersectionObserverEntry.isIntersecting")}} {{ReadOnlyInline}}</dt>
<dd>ターゲットの要素が、交差を監視しているルートを超えたら <code>true</code> を返す真偽値です。 <code>true</code> の場合、 <code>IntersectionObserverEntry</code> は交差状態の変わり目にあります。 <code>false</code> の場合、交差から非交差への変わり目であることがわかります。</dd>
<dt>{{domxref("IntersectionObserverEntry.rootBounds")}} {{readonlyinline}}</dt>
<dd>交差を監視しているルートの {{domxref("DOMRectReadOnly")}} を返します。</dd>
<dt>{{domxref("IntersectionObserverEntry.target")}} {{ReadOnlyInline}}</dt>
<dd>ルートとの交差が変化する {{domxref("Element")}} 。</dd>
<dt>{{domxref("IntersectionObserverEntry.time")}} {{readonlyinline}}</dt>
<dd><code>IntersectionObserver</code> の<a href="/ja/docs/Web/API/DOMHighResTimeStamp#The_time_origin">時刻の起点</a>を基準にして、交差が記録された時刻を示す {{domxref("DOMHighResTimeStamp")}} 。</dd>
</dl>
<h2 id="メソッド">メソッド</h2>
<p><em>このインタフェースにはメソッドがありません。</em></p>
<h2 id="仕様">仕様</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様書</th>
<th scope="col">ステータス</th>
<th scope="col">コメント</th>
</tr>
<tr>
<td>{{SpecName('IntersectionObserver','#intersection-observer-entry','IntersectionObserverEntry')}}</td>
<td>{{Spec2('IntersectionObserver')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
<p>{{Compat("api.IntersectionObserverEntry")}}</p>
|