aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/transition
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/css/transition
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/web/css/transition')
-rw-r--r--files/zh-cn/web/css/transition/index.html106
1 files changed, 106 insertions, 0 deletions
diff --git a/files/zh-cn/web/css/transition/index.html b/files/zh-cn/web/css/transition/index.html
new file mode 100644
index 0000000000..5b7a5cfc2c
--- /dev/null
+++ b/files/zh-cn/web/css/transition/index.html
@@ -0,0 +1,106 @@
+---
+title: transition
+slug: Web/CSS/transition
+tags:
+ - CSS
+ - CSS Property
+ - CSS Transitions
+ - transition
+translation_of: Web/CSS/transition
+---
+<p>{{CSSRef}}</p>
+
+<p><strong><code>transition</code> </strong><a href="https://developer.mozilla.org/en/CSS" title="CSS">CSS</a> 属性是 {{ cssxref("transition-property") }},{{ cssxref("transition-duration") }},{{ cssxref("transition-timing-function") }} 和 {{ cssxref("transition-delay") }} 的一个<a href="/en-US/docs/CSS/Shorthand_properties" title="/en-US/docs/CSS/Shorthand_properties">简写属性</a>。</p>
+
+<div>{{EmbedInteractiveExample("pages/css/transition.html")}}</div>
+
+
+
+<p>过渡可以为一个元素在不同状态之间切换的时候定义不同的过渡效果。比如在不同的伪元素之间切换,像是 {{cssxref(":hover")}},{{cssxref(":active")}} 或者通过 JavaScript 实现的状态变化。</p>
+
+<h2 id="语法">语法</h2>
+
+<pre class="brush:css no-line-numbers">/* Apply to 1 property */
+/* property name | duration */
+transition: margin-right 4s;
+
+/* property name | duration | delay */
+transition: margin-right 4s 1s;
+
+/* property name | duration | timing function */
+transition: margin-right 4s ease-in-out;
+
+/* property name | duration | timing function | delay */
+transition: margin-right 4s ease-in-out 1s;
+
+/* Apply to 2 properties */
+transition: margin-right 4s, color 1s;
+
+/* Apply to all changed properties */
+transition: all 0.5s ease-out;
+
+/* Global values */
+transition: inherit;
+transition: initial;
+transition: unset;
+</pre>
+
+<p><code>transition</code>属性可以被指定为一个或多个 CSS 属性的过渡效果,多个属性之间用逗号进行分隔。</p>
+
+<p>每个单属性转换都描述了应该应用于单个属性的转换(或特殊值<code>all</code>和<code>none</code>)。 这包括:</p>
+
+<ul>
+ <li>零或一个值,表示转换应适用的属性。 这可能是以下任何一种:
+ <ul>
+ <li>关键字<code>none</code></li>
+ <li>关键字<code>all</code></li>
+ <li>命名 CSS 属性的 {{cssxref("&lt;custom-ident&gt;")}} 。</li>
+ </ul>
+ </li>
+ <li>零或一个 {{cssxref("&lt;single-transition-timing-function&gt;")}} 值表示要使用的过渡函数</li>
+ <li>零,一或两个 {{cssxref("&lt;time&gt;")}} 值。可以解析为时间的第一个值被分配给 {{cssxref("transition-duration")}},并且可以解析为时间的第二个值被分配给{{cssxref("transition-delay")}}。</li>
+</ul>
+
+<p>请查看“<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions#When_property_value_lists_are_of_different_lengths" title="en/CSS/CSS transitions#When property value lists are of different lengths">如何处理</a>”以了解当<code>transition</code>属性的值个数超过可以接收的值的个数时该如何处理。简而言之,当<code>transition</code>属性的值个数超过可以接收的值的个数时,多余的值都会被忽略掉,不再进行解析。</p>
+
+<h3 id="标准语法">标准语法</h3>
+
+<pre>{{csssyntax}}</pre>
+
+<h2 id="示例">示例</h2>
+
+<p>“<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions" title="en/CSS/CSS transitions">使用 CSS 过渡</a>” 一文中还包含了几个 CSS 过渡示例。</p>
+
+<h2 id="规范">规范</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Specification</th>
+ <th scope="col">Status</th>
+ <th scope="col">Comment</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{ SpecName('CSS3 Transitions', '#transition', 'transition') }}</td>
+ <td>{{ Spec2('CSS3 Transitions') }}</td>
+ <td> </td>
+ </tr>
+ </tbody>
+</table>
+
+<p>{{cssinfo}}</p>
+
+<h2 id="浏览器兼容性">浏览器兼容性</h2>
+
+
+
+<p>{{Compat("css.properties.transition")}}</p>
+
+<h2 id="参见">参见</h2>
+
+<ul>
+ <li><a href="/zh-CN/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions">Using CSS transitions</a></li>
+ <li>{{ domxref("TransitionEvent") }}</li>
+</ul>