diff options
author | Alexey Istomin <webistomin@gmail.com> | 2021-03-20 17:12:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-20 17:12:30 +0300 |
commit | ffbf5a234039386eae76968a1844f766a9da3d67 (patch) | |
tree | 6bd08e3d64417a3b53a6677f159ed3c5cbce37ed /files/ru/web/api/globaleventhandlers | |
parent | 0057f9bf08252974cd89456bd9f4334dc236c40a (diff) | |
download | translated-content-ffbf5a234039386eae76968a1844f766a9da3d67.tar.gz translated-content-ffbf5a234039386eae76968a1844f766a9da3d67.tar.bz2 translated-content-ffbf5a234039386eae76968a1844f766a9da3d67.zip |
Fix various typos in Russian translation (#238)
* docs(ru): fix typos
* Update index.html
Co-authored-by: Alexey Pyltsyn <lex61rus@gmail.com>
Diffstat (limited to 'files/ru/web/api/globaleventhandlers')
3 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/api/globaleventhandlers/onanimationcancel/index.html b/files/ru/web/api/globaleventhandlers/onanimationcancel/index.html index 793c33b602..91a6e2bc07 100644 --- a/files/ru/web/api/globaleventhandlers/onanimationcancel/index.html +++ b/files/ru/web/api/globaleventhandlers/onanimationcancel/index.html @@ -7,7 +7,7 @@ translation_of: Web/API/GlobalEventHandlers/onanimationcancel <p>Обработчик события {{event("animationcancel")}} . Это событие вызывается когда CSS Анимация (<a href="/en-US/docs/Web/CSS/CSS_Animations">CSS Animation</a>) неожиданно прерывается (иными словами, в любой момент, когда анимация прекращает воспроизведение, не отправляя событие завершения {{event("animationend")}} ), например, когда изменяется {{cssxref("animation-name")}}, анимация удаляется или когда элемент с анимацией оказывается скрыт (непосредственно сам элемент, или другой элемент, содержащий его) средствами CSS. </p> -<h2 id="Синтакс">Синтакс</h2> +<h2 id="Синтаксис">Синтаксис</h2> <pre class="syntaxbox">var <em>animCancelHandler</em> = <em>target</em>.onanimationcancel; diff --git a/files/ru/web/api/globaleventhandlers/onanimationend/index.html b/files/ru/web/api/globaleventhandlers/onanimationend/index.html index b9b815672f..4def465047 100644 --- a/files/ru/web/api/globaleventhandlers/onanimationend/index.html +++ b/files/ru/web/api/globaleventhandlers/onanimationend/index.html @@ -7,7 +7,7 @@ translation_of: Web/API/GlobalEventHandlers/onanimationend <p>Обработчик события {{event("animationend")}}. Это событие вызывается когда <a href="/en-US/docs/Web/CSS/CSS_Animations">CSS анимация</a> достигает конца своего активного периода, который вычисляется как ({{cssxref("animation-duration")}} * {{cssxref("animation-iteration-count")}}) + {{cssxref("animation-delay")}}.</p> -<h2 id="Синтакс">Синтакс</h2> +<h2 id="Синтаксис">Синтаксис</h2> <pre class="syntaxbox">var <em>animEndHandler</em> = <em>target</em>.onanimationend; diff --git a/files/ru/web/api/globaleventhandlers/onfocus/index.html b/files/ru/web/api/globaleventhandlers/onfocus/index.html index ad7fce00bc..4c6d62e881 100644 --- a/files/ru/web/api/globaleventhandlers/onfocus/index.html +++ b/files/ru/web/api/globaleventhandlers/onfocus/index.html @@ -7,7 +7,7 @@ translation_of: Web/API/GlobalEventHandlers/onfocus <p>Свойство <strong>onfocus</strong> устанавливает обработчик события onFocus на данный элемент.</p> -<h2 id="Синтакс">Синтакс</h2> +<h2 id="Синтаксис">Синтаксис</h2> <pre class="syntaxbox">element.onfocus = выполняемый код при сработке события </pre> |