blob: 87c62ec0524d5e074d2ec09a0eec053d035a4918 (
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
|
---
title: Window.scrollByPages()
slug: Web/API/Window/scrollByPages
tags:
- API
- HTML DOM
- Method
- Non-standard
- Reference
- Window
- scrollByPages
- scrolling
translation_of: Web/API/Window/scrollByPages
---
<div>{{ ApiRef() }} {{Non-standard_header}}</div>
<p><code><strong>Window.scrollByPages()</strong></code> メソッドは、現在の文書を指定されたページ数だけスクロールさせます。</p>
<h2 id="Syntax">概要</h2>
<pre class="brush: js">window.scrollByPages(<em>pages</em>)
</pre>
<h3 id="Parameters">引数</h3>
<ul>
<li><code>pages</code> はスクロールさせるページ数です。正または負の整数を指定することができます。</li>
</ul>
<h2 id="Example">例</h2>
<pre class="brush: js">// 文書を下へ 1 ページスクロール
window.scrollByPages(1);
// 文書を上へ 1 ページスクロール
window.scrollByPages(-1);
</pre>
<h2 id="Specifications">仕様書</h2>
<p>DOM Level 0 です。仕様書にはありません。</p>
<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.Window.scrollByPages")}}</p>
<h2 id="See_also">関連情報</h2>
<ul>
<li>{{domxref("window.scroll()")}}</li>
<li>{{domxref("window.scrollBy()")}}</li>
<li>{{domxref("window.scrollByLines()")}}</li>
<li>{{domxref("window.scrollTo()")}}</li>
</ul>
|