diff options
author | Akane Nakayama <31214487+ShirasuGyoza@users.noreply.github.com> | 2021-06-01 22:44:10 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-01 22:44:10 +0900 |
commit | a49fe1e9e3cbe81ef7ca24785c9be17ff55ffc60 (patch) | |
tree | ae91cd276237a409ac506bab938a59a6096f4ccf | |
parent | fddb3d1fd9d6bb54a2082728606dfb9f2da6e626 (diff) | |
download | translated-content-a49fe1e9e3cbe81ef7ca24785c9be17ff55ffc60.tar.gz translated-content-a49fe1e9e3cbe81ef7ca24785c9be17ff55ffc60.tar.bz2 translated-content-a49fe1e9e3cbe81ef7ca24785c9be17ff55ffc60.zip |
IntersectionObsereverEntryを更新 (#956)
Co-authored-by: Akane Nakayama <nakayama.a@tam-tam.co.jp>
-rw-r--r-- | files/ja/web/api/intersectionobserverentry/index.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/files/ja/web/api/intersectionobserverentry/index.html b/files/ja/web/api/intersectionobserverentry/index.html index 6ef72fcdc8..e797324b3f 100644 --- a/files/ja/web/api/intersectionobserverentry/index.html +++ b/files/ja/web/api/intersectionobserverentry/index.html @@ -11,19 +11,19 @@ translation_of: Web/API/IntersectionObserverEntry <dl> <dt>{{domxref("IntersectionObserverEntry.boundingClientRect")}} {{readonlyinline}}</dt> - <dd>Returns the bounds rectangle of the target element as a {{domxref("DOMRectReadOnly")}}. The bounds are computed as described in the documentation for {{domxref("Element.getBoundingClientRect()")}}.</dd> + <dd>ターゲット要素の矩形の境界を {{domxref("DOMRectReadOnly")}} として返します。境界は {{domxref("Element.getBoundingClientRect()")}} のドキュメントで説明されているのと同様に計算されます。</dd> <dt>{{domxref("IntersectionObserverEntry.intersectionRatio")}} {{readonlyinline}}</dt> - <dd>Returns the ratio of the <code>intersectionRect</code> to the <code>boundingClientRect</code>.</dd> + <dd><code>intersectionRect</code> と <code>boundingClientRect</code> の比率を返します。</dd> <dt>{{domxref("IntersectionObserverEntry.intersectionRect")}} {{readonlyinline}}</dt> - <dd>Returns a {{domxref("DOMRectReadOnly")}} representing the target's visible area.</dd> + <dd>ターゲットの表示領域を表す {{domxref("DOMRectReadOnly")}} を返します。</dd> <dt>{{domxref("IntersectionObserverEntry.isIntersecting")}} {{ReadOnlyInline}}</dt> - <dd>A Boolean value which is <code>true</code> if the target element intersects with the intersection observer's root. If this is <code>true</code>, then, the <code>IntersectionObserverEntry</code> describes a transition into a state of intersection; if it's <code>false</code>, then you know the transition is from intersecting to not-intersecting.</dd> + <dd>ターゲットの要素が、交差を監視しているルートを超えたら <code>true</code> を返す真偽値です。 <code>true</code> の場合、 <code>IntersectionObserverEntry</code> は交差状態の変わり目にあります。 <code>false</code> の場合、交差から非交差への変わり目であることがわかります。</dd> <dt>{{domxref("IntersectionObserverEntry.rootBounds")}} {{readonlyinline}}</dt> - <dd>Returns a {{domxref("DOMRectReadOnly")}} for the intersection observer's root.</dd> + <dd>交差を監視しているルートの {{domxref("DOMRectReadOnly")}} を返します。</dd> <dt>{{domxref("IntersectionObserverEntry.target")}} {{ReadOnlyInline}}</dt> - <dd>The {{domxref("Element")}} whose intersection with the root changed.</dd> + <dd>ルートとの交差が変化する {{domxref("Element")}} 。</dd> <dt>{{domxref("IntersectionObserverEntry.time")}} {{readonlyinline}}</dt> - <dd>A {{domxref("DOMHighResTimeStamp")}} indicating the time at which the intersection was recorded, relative to the <code>IntersectionObserver</code>'s <a href="/en-US/docs/Web/API/DOMHighResTimeStamp#The_time_origin">time origin</a>.</dd> + <dd><code>IntersectionObserver</code> の<a href="/ja/docs/Web/API/DOMHighResTimeStamp#The_time_origin">時刻の起点</a>を基準にして、交差が記録された時刻を示す {{domxref("DOMHighResTimeStamp")}} 。</dd> </dl> <h2 id="メソッド">メソッド</h2> |