From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/api/window/scrollby/index.html | 66 +++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 files/ja/web/api/window/scrollby/index.html (limited to 'files/ja/web/api/window/scrollby') diff --git a/files/ja/web/api/window/scrollby/index.html b/files/ja/web/api/window/scrollby/index.html new file mode 100644 index 0000000000..28b8ea032a --- /dev/null +++ b/files/ja/web/api/window/scrollby/index.html @@ -0,0 +1,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 +--- +
{{ApiRef}}
+ +

概要

+ +

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

+ +

構文

+ +
window.scrollBy(X,Y);
+window.scrollBy(options)
+
+ +

引数

+ + + +

- または -

+ + + +

+ +

1ページ下スクロールの例:

+ +
window.scrollBy(0, window.innerHeight);
+
+ +

上スクロールの例:

+ +
window.scrollBy(0, -window.innerHeight);
+ +

options の使用例:

+ +
window.scrollBy({
+  top: 100,
+  left: 100,
+  behavior: 'smooth'
+});
+ +

注記

+ +

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

+ +

仕様

+ +

{{DOM0}}

-- cgit v1.2.3-54-g00ecf