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/scrollmaxy/index.html | 38 +++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 files/ja/web/api/window/scrollmaxy/index.html (limited to 'files/ja/web/api/window/scrollmaxy/index.html') diff --git a/files/ja/web/api/window/scrollmaxy/index.html b/files/ja/web/api/window/scrollmaxy/index.html new file mode 100644 index 0000000000..5f8cf61308 --- /dev/null +++ b/files/ja/web/api/window/scrollmaxy/index.html @@ -0,0 +1,38 @@ +--- +title: window.scrollMaxY +slug: Web/API/Window/scrollMaxY +tags: + - DOM + - DOM_0 + - Gecko + - Gecko DOM Reference + - Window + - 要更新 +translation_of: Web/API/Window/scrollMaxY +--- +

{{ ApiRef() }}

+

{{ 英語版章題("Summary") }}

+

概要

+

文書が垂直スクロールされ得る最大ピクセル数を返します。

+

{{ 英語版章題("Syntax") }}

+

構文

+
ypix = window.scrollMaxY
+
+

{{ 英語版章題("Parameters") }}

+

戻り値

+ +

{{ 英語版章題("Example") }}

+

+
// ページの最下部までスクロールします。
+ var maxY = window.scrollMaxY;
+ window.scrollTo(0,maxY);
+
+

{{ 英語版章題("Notes") }}

+

注記

+

このプロパティは、文書の高さの合計を取得するために使用してください。文書の高さの合計は、window.innerHeight + window.scrollMaxY と同等です。

+

window.scrollMaxXwindow.scrollTo も参照してください。

+

{{ 英語版章題("Specification") }}

+

仕様

+

{{ DOM0() }}

-- cgit v1.2.3-54-g00ecf