blob: ccbcc3e6ea8e8170eb62a35198abb22e9464e995 (
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
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
|
---
title: Element.scrollIntoView()
slug: Web/API/Element/scrollIntoView
tags:
- API
- CSSOM Views
- Experimentell
- Methode(2)
- Reference
translation_of: Web/API/Element/scrollIntoView
---
<div>{{ APIRef("DOM")}}{{SeeCompatTable}}</div>
<p>Die Methode <code><strong>Element.scrollIntoView()</strong></code> scrolled das Element in den sichtbaren Bereich des Browsers.</p>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox notranslate">element.scrollIntoView(); // Gleich mit<code> element.scrollIntoView(true)
</code>element.scrollIntoView(<em>alignToTop</em>); // Boolean Argument
element.scrollIntoView(<em>scrollIntoViewOptions</em>); // Object Argument
</pre>
<h3 id="Parameter">Parameter</h3>
<dl>
<dt><em><code>alignToTop</code></em></dt>
<dd>Dies ist ein {{jsxref("Boolean")}} Wert:
<ul>
<li>Bei <code>true</code> wird der obere Rand des Elements an den oberen Rand des sichtbaren Bereichs im Browser gescrolled.</li>
<li>Bei <code>false</code> wird der untere Rand des Elements an den unteren Rand des sichtbaren Bereichs im Browser gescrolled.</li>
</ul>
</dd>
<dt><em><code>scrollIntoViewOptions</code></em></dt>
<dd>Ein Boolean oder Objekt mit den folgenden Optionen:</dd>
<dd>
<pre class="idl notranslate">{
behavior: <strong>"auto"</strong> | "smooth",
block: <strong>"start"</strong> | "end",
}</pre>
</dd>
<dd>Wenn der Wert ein Boolean, enspricht <code>true</code> <code>{block: "start"} und false {block: "end"}.</code></dd>
</dl>
<h2 id="Beispiel">Beispiel</h2>
<pre class="brush: js notranslate">var element = document.getElementById("box");
element.scrollIntoView();
element.scrollIntoView(false);
element.scrollIntoView({block: "end"});
element.scrollIntoView({block: "end", behavior: "smooth"});
</pre>
<h2 id="Notizen">Notizen</h2>
<p>Das Element wird eventuell nicht ganz nach oben oder unten gescrolled. Je nach Layout der anderen Elemente.</p>
<h2 id="Technische_Daten"><span class="short_text" id="result_box" lang="de"><span>Technische Daten</span></span></h2>
<table class="standard-table">
<tbody>
<tr>
<th>Specification</th>
<th>Status</th>
<th>Kommentar</th>
</tr>
<tr>
<td>{{SpecName("CSSOM View", "#dom-element-scrollintoview", "Element.scrollIntoView()")}}</td>
<td>{{Spec2("CSSOM View")}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="Browserkompatibilität">Browserkompatibilität</h2>
<p>{{Compat("api.Element.scrollIntoView")}}</p>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li>{{non-standard_inline}} <a href="/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded"><code>Element.scrollIntoViewIfNeeded()</code></a></li>
</ul>
|