aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/window/requestanimationframe/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/window/requestanimationframe/index.html')
-rw-r--r--files/ru/web/api/window/requestanimationframe/index.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/files/ru/web/api/window/requestanimationframe/index.html b/files/ru/web/api/window/requestanimationframe/index.html
index 831b392dc1..7649842dc6 100644
--- a/files/ru/web/api/window/requestanimationframe/index.html
+++ b/files/ru/web/api/window/requestanimationframe/index.html
@@ -16,11 +16,11 @@ original_slug: DOM/window.requestAnimationFrame
<p>Callback методу передаётся один аргумент, {{domxref("DOMHighResTimeStamp")}}, который содержит текущее время (количество миллисекунд, прошедших с момента <a href="/en-US/docs/Web/API/DOMHighResTimeStamp#The_time_origin">time origin</a>). Когда колбэки, отправленные в очередь с помощью <code>requestAnimationFrame()</code> начинают вызывать несколько колбэков в одном кадре, каждый получает одинаковый timestamp, хотя для вычисления каждого callback было затрачено время. Этот timestamp - десятичное число в миллисекундах, но с минимальной точностью в 1ms (1000 µs).</p>
-<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+<h2 id="Syntax">Синтаксис</h2>
<pre class="brush: js notranslate">window.requestAnimationFrame(callback);</pre>
-<h3 id="Parameters" name="Parameters">Параметры</h3>
+<h3 id="Parameters">Параметры</h3>
<dl>
<dt><code>callback</code></dt>
@@ -33,7 +33,7 @@ original_slug: DOM/window.requestAnimationFrame
<p><code>requestID</code> — длинное целое, являющееся уникальным идентификатором для записи, содержащей callback. Оно не равно нулю, но других предположений о его значении делать не следует. Вы можете передать его в {{ domxref("window.cancelAnimationFrame()") }} для отмены вызова.</p>
-<h2 id="Notes" name="Notes">Пример</h2>
+<h2 id="Notes">Пример</h2>
<pre class="brush: js notranslate">var start = null;
var element = document.getElementById('SomeElementYouWantToAnimate');
@@ -53,7 +53,7 @@ window.requestAnimationFrame(step);</pre>
<p>В Edge версиях младше 17 и в Internet Explorer не надёжно запускать <code>requestAnimationFrame</code> перед циклом рисования.</p>
-<h2 id="Specification" name="Specification">Спецификация</h2>
+<h2 id="Specification">Спецификация</h2>
<table class="standard-table">
<thead>
@@ -77,7 +77,7 @@ window.requestAnimationFrame(step);</pre>
</tbody>
</table>
-<h2 id="Browser_compatibility" name="Browser_compatibility">Браузерная совместимость</h2>
+<h2 id="Browser_compatibility">Браузерная совместимость</h2>
<p id="Specification">{{Compat("api.Window.requestAnimationFrame")}}</p>