diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/element/scrollintoview/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/element/scrollintoview/index.html')
-rw-r--r-- | files/ja/web/api/element/scrollintoview/index.html | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/files/ja/web/api/element/scrollintoview/index.html b/files/ja/web/api/element/scrollintoview/index.html new file mode 100644 index 0000000000..f13c5a2bc3 --- /dev/null +++ b/files/ja/web/api/element/scrollintoview/index.html @@ -0,0 +1,99 @@ +--- +title: Element.scrollIntoView() +slug: Web/API/Element/scrollIntoView +tags: + - API + - CSSOM Views + - DOM + - Element + - Method + - Reference + - View + - scrollIntoView + - scrolling + - スクロール + - メソッド +translation_of: Web/API/Element/scrollIntoView +--- +<div>{{APIRef("DOM")}}</div> + +<div><span class="seoSummary">{{domxref("Element")}} インターフェイスの <code><strong>scrollIntoView()</strong></code> メソッドは、 <code>scrollIntoView()</code> が呼び出された要素がユーザーに見えるところまで、要素の親コンテナーをスクロールします。</span></div> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox">element.scrollIntoView(); +element.scrollIntoView(<var>alignToTop</var>); // 論理型の引数 +element.scrollIntoView(<var>scrollIntoViewOptions</var>); // オブジェクト型の引数 +</pre> + +<h3 id="Parameters" name="Parameters">引数</h3> + +<dl> + <dt><code><var>alignToTop</var></code> {{optional_inline}}</dt> + <dd>{{jsxref("Boolean")}} 値です。 + <ul> + <li><code>true</code> の場合、要素の上端がスクロール可能な祖先の表示範囲の上端に来るようにスクロールします。 <code>scrollIntoViewOptions: {block: "start", inline: "nearest"}</code> に相当します。これが既定値です。</li> + <li><code>false</code> の場合、要素の下端がスクロール可能祖先の表示範囲の下端に来るようにスクロールします。 <code>scrollIntoViewOptions: {block: "end", inline: "nearest"}</code> に相当します。</li> + </ul> + </dd> + <dt><code><var>scrollIntoViewOptions</var></code> {{optional_inline}} {{experimental_inline}}</dt> + <dd>以下のプロパティを持つオブジェクトです。</dd> + <dd> + <dl> + <dt><code>behavior</code> {{optional_inline}}</dt> + <dd>推移のアニメーションを定義します。<br> + <code>auto</code> または <code>smooth</code> のどちらかです。既定値は <code>auto</code> です。</dd> + <dt><code>block</code> {{optional_inline}}</dt> + <dd>垂直方向の配置を定義します。<br> + <code>start</code>, <code>center</code>, <code>end</code>, <code>nearest</code> の何れかです。既定値は <code>start</code> です。</dd> + <dt><code>inline</code> {{optional_inline}}</dt> + <dd>水平方法の配置を定義します。<br> + <code>start</code>, <code>center</code>, <code>end</code>, <code>nearest</code> の何れかです。既定値は <code>nearest</code> です。</dd> + </dl> + </dd> +</dl> + +<h2 id="Example" name="Example">例</h2> + +<pre class="brush: js">var element = document.getElementById("box"); + +element.scrollIntoView(); +element.scrollIntoView(false); +element.scrollIntoView({block: "end"}); +element.scrollIntoView({behavior: "smooth", block: "end", inline: "nearest"}); +</pre> + +<h2 id="Notes" name="Notes">メモ</h2> + +<p>他の要素のレイアウトによっては、要素の上部または下部まで完全にスクロールされない場合があります。</p> + +<h2 id="Specifications" name="Specifications">仕様書</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-element-scrollintoview", "Element.scrollIntoView()")}}</td> + <td>{{Spec2("CSSOM View")}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<p>{{Compat("api.Element.scrollIntoView")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>{{domxref("Element.scrollIntoViewIfNeeded()")}} {{non-standard_inline}}</li> +</ul> |