aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/css/animation-fill-mode
diff options
context:
space:
mode:
authorAlexey Istomin <webistomin@gmail.com>2021-03-20 18:37:44 +0300
committerGitHub <noreply@github.com>2021-03-20 18:37:44 +0300
commit841aae260382e2bf5ebb44d765d8c7301d27caab (patch)
tree81a92c25f6dc02e5f119131785d721db79fc3455 /files/ru/web/css/animation-fill-mode
parent730fea852ff827ca034fe17c84288c95d270ec92 (diff)
downloadtranslated-content-841aae260382e2bf5ebb44d765d8c7301d27caab.tar.gz
translated-content-841aae260382e2bf5ebb44d765d8c7301d27caab.tar.bz2
translated-content-841aae260382e2bf5ebb44d765d8c7301d27caab.zip
Restore "ё" letter in Russian translation (#239)
* docs(ru): restore ё letter * docs(ru): resolve conflicts * refactor(idea): remove ide folder
Diffstat (limited to 'files/ru/web/css/animation-fill-mode')
-rw-r--r--files/ru/web/css/animation-fill-mode/index.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/files/ru/web/css/animation-fill-mode/index.html b/files/ru/web/css/animation-fill-mode/index.html
index 2549e3ac2d..855d8dad42 100644
--- a/files/ru/web/css/animation-fill-mode/index.html
+++ b/files/ru/web/css/animation-fill-mode/index.html
@@ -11,7 +11,7 @@ translation_of: Web/CSS/animation-fill-mode
<h2 id="Описание">Описание</h2>
-<p><a href="/en/CSS" title="CSS">CSS</a> свойство <strong><code>animation-fill-mode</code></strong> определяет, как нужно применять стили к объекту анимации до и после ее выполнения.</p>
+<p><a href="/en/CSS" title="CSS">CSS</a> свойство <strong><code>animation-fill-mode</code></strong> определяет, как нужно применять стили к объекту анимации до и после её выполнения.</p>
<p>{{cssinfo}}</p>
@@ -32,7 +32,7 @@ animation-fill-mode: both, forwards, none;
<dl>
<dt><code>none</code></dt>
- <dd>Стили анимации не будут применены к элементу до и после ее выполнения.</dd>
+ <dd>Стили анимации не будут применены к элементу до и после её выполнения.</dd>
<dt><code>forwards</code></dt>
<dd>По окончании анимации элемент сохранит стили последнего ключевого кадра, который определяется значениями {{cssxref("animation-direction")}} и {{cssxref("animation-iteration-count")}}:
<table class="standard-table">
@@ -56,22 +56,22 @@ animation-fill-mode: both, forwards, none;
</tr>
<tr>
<td><code>alternate</code></td>
- <td>четное</td>
+ <td>чётное</td>
<td><code>0%</code> или <code>from</code></td>
</tr>
<tr>
<td><code>alternate</code></td>
- <td>нечетное</td>
+ <td>нечётное</td>
<td><code>100%</code> или <code>to</code></td>
</tr>
<tr>
<td><code>alternate-reverse</code></td>
- <td>четное</td>
+ <td>чётное</td>
<td><code>100%</code> или <code>to</code></td>
</tr>
<tr>
<td><code>alternate-reverse</code></td>
- <td>нечетное</td>
+ <td>нечётное</td>
<td><code>0%</code> или <code>from</code></td>
</tr>
</tbody>
@@ -114,8 +114,8 @@ animation-fill-mode: both, forwards, none;
<pre class="brush: html">&lt;p&gt;Наведите курсор мыши на серый блок&lt;/p&gt;
&lt;div class="demo"&gt;
- &lt;div class="grows"&gt;Этот просто растет&lt;/div&gt;
- &lt;div class="growsandstays"&gt;Этот растет и остается большим&lt;/div&gt;
+ &lt;div class="grows"&gt;Этот просто растёт&lt;/div&gt;
+ &lt;div class="growsandstays"&gt;Этот растёт и остаётся большим&lt;/div&gt;
&lt;/div&gt;</pre>
<h3 id="CSS">CSS</h3>