aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/api/window/scrollto/index.html
blob: c33f70df89eeaaf6381d75a3ff452d0a92a34020 (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
---
title: Window.scrollTo()
slug: Web/API/Window/scrollTo
tags:
  - API
  - Méthode
  - Referenz
translation_of: Web/API/Window/scrollTo
---
<div>{{ APIRef }}</div>

<p><strong><code>Window.scrollTo()</code></strong> scrollt zu einer spezifischen Koordinate im Dokument.</p>

<h2 id="Syntax">Syntax</h2>

<pre class="syntaxbox">window.scrollTo(<em>x-Koordinate</em>, <em>y-Koordinate</em>)
window.scrollTo(<em>options</em>)
</pre>

<h3 id="Parameter">Parameter</h3>

<ul>
 <li><code>x-Koordinate</code> ist der Pixel auf der horizontalen Achse des Dokuments, wo der obere linke Punkt sein soll.</li>
 <li><code>y-koordinate</code> ist der Pixel auf der vertikalen Achse des Dokuments, wo der obere linke Punkt sein soll.</li>
</ul>

<p>- or -</p>

<ul>
 <li><code>options</code> ist ein {{domxref("ScrollToOptions")}} Dictionary.</li>
</ul>

<h2 id="Beispiele">Beispiele</h2>

<pre class="brush:js">window.scrollTo(0, 1000);
</pre>

<p>Mit Benutzung von <code>options</code>:</p>

<pre class="brush: js">window.scrollTo({
  top: 100,
  left: 100,
  behavior: 'smooth'
});</pre>

<h2 id="Anmerkungen">Anmerkungen</h2>

<p>{{domxref("Window.scroll()")}} ist im Endeffekt die gleiche Methode. Schau dir {{domxref("Window.scrollBy()")}}, {{domxref("Window.scrollByLines()")}}, und {{domxref("Window.scrollByPages()")}} für relatives scrollen an.</p>

<p>Um Elemente zu scrollen, schau dir {{domxref("Element.scrollTop")}} und {{domxref("Element.scrollLeft")}} an.</p>

<h2 id="Spezifikationen">Spezifikationen</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Spezifikation</th>
   <th scope="col">Status</th>
   <th scope="col">Kommentar</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{ SpecName('CSSOM View', '#dom-window-scroll', 'window.scroll()') }}</td>
   <td>{{ Spec2('CSSOM View') }}</td>
   <td>Anfängliche Definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>



<p>{{Compat("api.Window.scrollTo")}}</p>