diff options
author | Believers in Science Studio <rsworktech@outlook.com> | 2021-09-25 15:23:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-25 15:23:53 +0800 |
commit | 572979334dd7e846181ea087587d6ed75faab5f9 (patch) | |
tree | fadf468a106045c6d4bcf9ecf23c2af4508e5044 /files/zh-cn/web | |
parent | 3c3616a3c537860f92649a8fe0f847ac34f3f551 (diff) | |
download | translated-content-572979334dd7e846181ea087587d6ed75faab5f9.tar.gz translated-content-572979334dd7e846181ea087587d6ed75faab5f9.tar.bz2 translated-content-572979334dd7e846181ea087587d6ed75faab5f9.zip |
Fix text format Web/CSS/animation-direction, zh-CN (#2563)
* [zh-cn] Fix text format in CSS/animation-direction
* [zh-cn] Fix text format in CSS/animation-direction
Diffstat (limited to 'files/zh-cn/web')
-rw-r--r-- | files/zh-cn/web/css/animation-direction/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/files/zh-cn/web/css/animation-direction/index.html b/files/zh-cn/web/css/animation-direction/index.html index 34194446db..777678b06a 100644 --- a/files/zh-cn/web/css/animation-direction/index.html +++ b/files/zh-cn/web/css/animation-direction/index.html @@ -36,13 +36,13 @@ animation-direction: alternate, reverse, normal <dl> <dt><code>normal</code></dt> - <dd><code>每个循环内动画向前循环,换言之,每个动画循环结束,动画重置到起点重新开始,这是默认属性。</code></dd> + <dd>每个循环内动画向前循环,换言之,每个动画循环结束,动画重置到起点重新开始,这是默认属性。</dd> <dt><code>alternate</code></dt> - <dd><code>动画交替反向运行,反向运行时,动画按步后退,同时,</code><span style="line-height: 1.5;">带时间功能的函数也反向,比如,ease-in 在反向时成为ease-out。计数取决于开始时是奇数迭代还是偶数迭代</span></dd> + <dd>动画交替反向运行,反向运行时,动画按步后退,同时,带时间功能的函数也反向,比如,<code>ease-in</code> 在反向时成为 <code>ease-out</code>。计数取决于开始时是奇数迭代还是偶数迭代</dd> <dt><code>reverse</code></dt> - <dd><font face="Courier New, Andale Mono, monospace"><span style="line-height: normal;">反向运行动画,每周期结束动画由尾到头运行。</span></font></dd> + <dd>反向运行动画,每周期结束动画由尾到头运行。</dd> <dt><code>alternate-reverse</code></dt> - <dd><code>反向交替, 反向开始交替</code></dd> + <dd>反向交替, 反向开始交替</dd> <dd>动画第一次运行时是反向的,然后下一次是正向,后面依次循环。决定奇数次或偶数次的计数从1开始。</dd> </dl> |