diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-06-09 02:06:47 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-09 02:06:47 +0900 |
commit | 2109f8e51532a8194f75951701351807ccf52c58 (patch) | |
tree | 94643157a1d3e1250ae734386d5fb203d1bebad9 /files/ja/web/api | |
parent | 4c7f592a6ea0d5e779d1982a77c97a6c770a3c4a (diff) | |
download | translated-content-2109f8e51532a8194f75951701351807ccf52c58.tar.gz translated-content-2109f8e51532a8194f75951701351807ccf52c58.tar.bz2 translated-content-2109f8e51532a8194f75951701351807ccf52c58.zip |
Web/API/Window/scrollByLines を更新 (#1028)
- 英語版章題マクロを除去
- 2021/02/20 時点の英語版に同期
Diffstat (limited to 'files/ja/web/api')
-rw-r--r-- | files/ja/web/api/window/scrollbylines/index.html | 70 |
1 files changed, 42 insertions, 28 deletions
diff --git a/files/ja/web/api/window/scrollbylines/index.html b/files/ja/web/api/window/scrollbylines/index.html index e27191fa9c..a6a0f6f064 100644 --- a/files/ja/web/api/window/scrollbylines/index.html +++ b/files/ja/web/api/window/scrollbylines/index.html @@ -1,38 +1,52 @@ --- -title: window.scrollByLines +title: Window.scrollByLines() slug: Web/API/Window/scrollByLines tags: - - DOM - - DOM_0 - - Gecko - - Gecko DOM Reference - - 要更新 +- API +- HTML DOM +- Method +- Non-standard +- Reference +- Window translation_of: Web/API/Window/scrollByLines --- -<p>{{ ApiRef() }} {{ 英語版章題("Summary") }}</p> -<h3 id=".E6.A6.82.E8.A6.81" name=".E6.A6.82.E8.A6.81">概要</h3> -<p>指定した行分文書をスクロールします。 {{ 英語版章題("Syntax") }}</p> -<h3 id="Syntax">構文</h3> -<pre class="eval">window.scrollByLines(<i>lines</i>) +<div>{{ ApiRef() }} {{Non-standard_header}}</div> + +<p><code><strong>Window.scrollByLines()</strong></code> メソッドは、指定された行数だけ文書をスクロールさせます。</p> + +<h2 id="Syntax">構文</h2> + +<pre class="brush: js">window.scrollByLines(<em>lines</em>) </pre> -<p>{{ 英語版章題("Parameters") }}</p> -<h3 id="Arguments">引数</h3> + +<h3 id="Parameters">引数</h3> + <ul> - <li><code>lines</code> は、文書をスクロールする行数です。</li> + <li><code>lines</code> は文書をスクロールする行数です。これは正または負の整数を指定することができます。</li> </ul> + +<h2 id="Example">例</h2> + +<pre class="brush:html"><!-- 文書を 5 行だけ上方向にスクロールする --> +<button id="scroll-up" onclick="scrollByLines(-5);">Up 5 lines</button> + +<!-- 文書を 5 行だけ下方向にスクロールする --> +<button id="scroll-down" onclick="scrollByLines(5);">Down 5 lines</button> +</pre> + +<h2 id="Specifications">仕様書</h2> + +<p>どの仕様書にもありません。</p> + +<h2 id="Browser_compatibility">ブラウザーの互換性</h2> + +<p>{{Compat("api.Window.scrollByLines")}}</p> + +<h2 id="See_also">関連情報</h2> + <ul> - <li><code>lines</code> は、正、または、負の整数です。</li> + <li>{{domxref("window.scroll()")}}</li> + <li>{{domxref("window.scrollBy()")}}</li> + <li>{{domxref("window.scrollByPages()")}}</li> + <li>{{domxref("window.scrollTo()")}}</li> </ul> -<p>{{ 英語版章題("Example") }}</p> -<h3 id=".E4.BE.8B" name=".E4.BE.8B">例</h3> -<pre class="eval">// 5 行分文書をスクロールダウンします。 -<button onclick="scrollByLines(5);">down 5 lines</button> -</pre> -<pre class="eval">// 5 行分文書をスクロールアップします。 -<button onclick="scrollByLines(-5);">up 5 lines</button> -</pre> -<p>{{ 英語版章題("Notes") }}</p> -<h3 id="Notes">注</h3> -<p>{{domxref("window.scrollBy")}}、{{domxref("window.scrollByPages")}} も参照してください。 {{ 英語版章題("Specification") }}</p> -<h3 id=".E4.BB.95.E6.A7.98" name=".E4.BB.95.E6.A7.98">仕様</h3> -<p>{{ DOM0() }}</p> |