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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
---
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>
<p>{{Compat("api.Element.scrollIntoView")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{domxref("Element.scrollIntoViewIfNeeded()")}} {{non-standard_inline}}</li>
</ul>
|