From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/web/css/transition/index.html | 106 ++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 files/zh-cn/web/css/transition/index.html (limited to 'files/zh-cn/web/css/transition') 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 +--- +

{{CSSRef}}

+ +

transition CSS 属性是 {{ cssxref("transition-property") }},{{ cssxref("transition-duration") }},{{ cssxref("transition-timing-function") }} 和 {{ cssxref("transition-delay") }} 的一个简写属性

+ +
{{EmbedInteractiveExample("pages/css/transition.html")}}
+ + + +

过渡可以为一个元素在不同状态之间切换的时候定义不同的过渡效果。比如在不同的伪元素之间切换,像是 {{cssxref(":hover")}},{{cssxref(":active")}} 或者通过 JavaScript 实现的状态变化。

+ +

语法

+ +
/* 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;
+
+ +

transition属性可以被指定为一个或多个 CSS 属性的过渡效果,多个属性之间用逗号进行分隔。

+ +

每个单属性转换都描述了应该应用于单个属性的转换(或特殊值allnone)。 这包括:

+ + + +

请查看“如何处理”以了解当transition属性的值个数超过可以接收的值的个数时该如何处理。简而言之,当transition属性的值个数超过可以接收的值的个数时,多余的值都会被忽略掉,不再进行解析。

+ +

标准语法

+ +
{{csssyntax}}
+ +

示例

+ +

使用 CSS 过渡” 一文中还包含了几个 CSS 过渡示例。

+ +

规范

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{ SpecName('CSS3 Transitions', '#transition', 'transition') }}{{ Spec2('CSS3 Transitions') }} 
+ +

{{cssinfo}}

+ +

浏览器兼容性

+ + + +

{{Compat("css.properties.transition")}}

+ +

参见

+ + -- cgit v1.2.3-54-g00ecf