diff options
Diffstat (limited to 'files/ru/web/api/window/scrollbylines/index.html')
-rw-r--r-- | files/ru/web/api/window/scrollbylines/index.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/files/ru/web/api/window/scrollbylines/index.html b/files/ru/web/api/window/scrollbylines/index.html index 6f2c178a2b..4d357d4798 100644 --- a/files/ru/web/api/window/scrollbylines/index.html +++ b/files/ru/web/api/window/scrollbylines/index.html @@ -9,23 +9,23 @@ translation_of: Web/API/Window/scrollByLines <p id="comment_text_2">{{Non-standard_header}}</p> </div> -<h2 id="Summary" name="Summary">Summary</h2> +<h2 id="Summary">Summary</h2> <p>Прокручивает документ на заданное число строк.</p> -<h2 id="Syntax" name="Syntax">Syntax</h2> +<h2 id="Syntax">Syntax</h2> <pre class="syntaxbox">window.scrollByLines(<var>lines</var>) </pre> -<h2 id="Parameters" name="Parameters">Parameters</h2> +<h2 id="Parameters">Parameters</h2> <ul> <li><code>lines</code> — число линий, на которое надо прокрутить документ.</li> <li><code>lines</code> может быть положительным или отрицательным целым числом.</li> </ul> -<h2 id="Example" name="Example">Example</h2> +<h2 id="Example">Example</h2> <pre class="brush:html"><!-- прокручивает страницу вниз на 5 линий. --> <button onclick="scrollByLines(5);">down 5 lines</button> @@ -35,11 +35,11 @@ translation_of: Web/API/Window/scrollByLines <button onclick="scrollByLines(-5);">up 5 lines</button> </pre> -<h2 id="Specification" name="Specification">Specification</h2> +<h2 id="Specification">Specification</h2> <p id="comment_text_2">Не является частью спецификации</p> -<h2 id="See_also" name="See_also">See also</h2> +<h2 id="See_also">See also</h2> <ul> <li>{{domxref("window.scrollBy")}}, {{domxref("window.scrollByPages")}}</li> |