aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/window/scrollby/index.html
blob: 28b8ea032ad30b8e2dbaa0389f521f30a72c6e4b (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
---
title: window.scrollBy
slug: Web/API/Window/scrollBy
tags:
  - API
  - CSSOM View
  - DOM
  - DOM_0
  - Gecko
  - Gecko DOM Reference
  - Method
  - Reference
  - Window
translation_of: Web/API/Window/scrollBy
---
<div>{{ApiRef}}</div>

<h2 id="Summary" name="Summary">概要</h2>

<p>指定された量だけウィンドウ内の文書をスクロールします。</p>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox notranslate">window.scrollBy(<em>X</em>,<em>Y</em>);
window.scrollBy(<var>options</var>)
</pre>

<h3 id="Parameters" name="Parameters">引数</h3>

<ul>
 <li><code><var>x-coord</var></code> は、左上に表示されたい文書の水平軸上のピクセルです。</li>
 <li><code><var>y-coord</var></code> は、左上に表示されたい文書の垂直軸上のピクセルです。</li>
</ul>

<p>- または -</p>

<ul>
 <li><code><var>options</var></code>{{domxref("ScrollToOptions")}} 辞書です。</li>
</ul>

<h2 id="Example" name="Example"></h2>

<p>1ページ下スクロールの例:</p>

<pre class="eval notranslate">window.scrollBy(0, window.innerHeight);
</pre>

<p>上スクロールの例:</p>

<pre class="notranslate">window.scrollBy(0, -window.innerHeight);</pre>

<p><code>options</code> の使用例:</p>

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

<h2 id="Notes" name="Notes">注記</h2>

<p>{{domxref("window.scrollBy")}} は、指定量のスクロール、 {{domxref("window.scroll")}} は、文書の絶対座標へのスクロールです。 {{domxref("window.scrollByLines")}}{{domxref("window.scrollByPages")}} も参照してください。</p>

<h2 id="Specification" name="Specification">仕様</h2>

<p>{{DOM0}}</p>