From 71b80b592e9f30e3b3a42da0330c3679aa8a023b Mon Sep 17 00:00:00 2001 From: Zhicheng Wang Date: Sun, 19 Jun 2016 09:35:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A8=E7=94=BB=E4=B8=80=E5=AE=A1=E5=AE=8C?= =?UTF-8?q?=E6=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/docs/ts/latest/guide/animations.jade | 133 ++++++++++---------- 1 file changed, 67 insertions(+), 66 deletions(-) diff --git a/public/docs/ts/latest/guide/animations.jade b/public/docs/ts/latest/guide/animations.jade index 42aaf1597b..1d2e87c839 100644 --- a/public/docs/ts/latest/guide/animations.jade +++ b/public/docs/ts/latest/guide/animations.jade @@ -6,29 +6,29 @@ include ../_util-fns that call attention where it's needed. Well-designed animations can make a UI not only more fun but also easier to use. - 动画是现代Web应用设计中一个很重要的方面。我们希望用户界面能在不同的状态之间更平滑的转换。只要需要,还可以用适当的动画来吸引注意力。 - 设计良好的动画不但可以让UI更有趣,而且还会更易于使用。 + 动画是现代Web应用设计中一个很重要的方面。我们希望用户界面能在不同的状态之间更平滑的转场。如果需要,还可以用适当的动画来吸引注意力。 + 设计良好的动画不但会让UI更有趣,还会让它更容易使用。 Angular's animation system gives us what we need to make the kinds of animations we want. We can build animations that run with the same kind of native performance that we're used to with pure CSS animations. But we can also have our animation logic tightly integrated with the rest of our application code, where they can be easily triggered and controlled. - Angular的动画系统赋予我们制作各种动画效果的能力,构建出与原生CSS动画性能相同的动画。 - 但是我们又获得了让动画逻辑与其它应用代码紧紧集成在一起的能力,这些动画可以更容易的被触发和控制。 + Angular的动画系统赋予了我们制作各种动画效果的能力,以构建出与原生CSS动画性能相同的动画。 + 但我们又额外获得了让动画逻辑与其它应用代码紧紧集成在一起的能力,这让动画可以被更容易的触发与控制。 .alert.is-helpful :marked Angular animations are built on top of the standard [Web Animations API](https://w3c.github.io/web-animations/) and they run natively on [browsers that support it](http://caniuse.com/#feat=web-animation). - Angular动画是基于标准的[Web动画API(Web Animations API)](https://w3c.github.io/web-animations/)构建的,它们在[支持此API的浏览器中](http://caniuse.com/#feat=web-animation)用原生方式工作。 + Angular动画是基于标准的[Web动画API(Web Animations API)](https://w3c.github.io/web-animations/)构建的,它们在[支持此API的浏览器中](http://caniuse.com/#feat=web-animation)会用原生方式工作。 For other browsers, a polyfill is required. Grab [`web-animations.min.js` from here](https://github.com/web-animations/web-animations-js) and add it to your page. - 对于其它浏览器,就需要一个填充库(polyfill)了。[从这里获取`web-animations.min.js`](https://github.com/web-animations/web-animations-js),并把它加入你的页面中。 + 至于其它浏览器,就需要一个填充库(polyfill)了。你可以[从这里获取`web-animations.min.js`](https://github.com/web-animations/web-animations-js),并把它加入你的页面中。 A more lightweight polyfill maintained by the Angular team is coming soon. @@ -41,11 +41,11 @@ include ../_util-fns * [Quickstart Example: Transitioning Between Two States](#example-transitioning-between-states) - * [快速起步范例:在两个状态之间过渡(Transition)](#example-transitioning-between-states) + * [快速起步范例:在两个状态之间进行转场(Transition)](#example-transitioning-between-states) * [States and Transitions](#states-and-transitions) - * [状态与过渡](#states-and-transitions) + * [状态与转场](#states-and-transitions) * [Example: Entering and Leaving](#example-entering-and-leaving) @@ -57,11 +57,11 @@ include ../_util-fns * [Animatable Properties and Units](#animatable-properties-and-units) - * [可参与动画的属性与单位](#animatable-properties-and-units) + * [可动的(Animatable)属性与单位](#animatable-properties-and-units) * [Automatic Property Calculation](#automatic-property-calculation) - * [自动计算属性值](#automatic-property-calculation) + * [自动属性值计算](#automatic-property-calculation) * [Animation Timing](#animation-timing) @@ -86,7 +86,7 @@ a(id="example-transitioning-between-states") :marked ## Quickstart Example: Transitioning Between Two States - ## 快速起步范例:在两个状态间过渡 + ## 快速起步范例:在两个状态间转场 figure img(src="/resources/images/devguide/animations/animation_basic_click.gif" alt="A simple transition animation" align="right" style="width:220px;margin-left:20px" ) @@ -95,7 +95,7 @@ figure Let's build a simple animation that transitions an element between two states driven by a model attribute. - 我们来构建一个简单的动画,它会让一个元素用模型驱动的方式在两个状态之间过渡。 + 我们来构建一个简单的动画,它会让一个元素用模型驱动的方式在两个状态之间转场。 Animations are defined inside `@Component` metadata. Before we can add some, we need to import a few animation-specific functions: @@ -109,8 +109,8 @@ figure metadata. It has animated transitions between two states: `active` and `inactive`. When a hero is active, we display a the element in slightly larger size and lighter color. - 通过这些,我们现在可以在组件元数据中定义一个名叫`heroState`的*动画触发器*。它在两个状态`active`和`inactive`之间完成动画过渡。 - 当英雄处于激活状态时,它会把该元素显示的稍微大一点、亮一点。 + 通过这些,我们现在可以在组件元数据中定义一个名叫`heroState`的*动画触发器*。它在两个状态`active`和`inactive`之间进行转场。 + 当英雄处于激活状态时,它会把该元素显示得稍微大一点、亮一点。 +makeExample('animations/ts/app/hero-list-basic.component.ts', 'animationdef')(format=".") @@ -120,14 +120,14 @@ figure animation metadata. In an upcoming release of Angular, support will be added for pulling the styles in from the component CSS stylesheet instead. - 在这个例子中,我们在动画元数据中用内联的方式定义了动画样式(`color`和`transform`)。在即将到来的一个Angular发布中,还将支持从组件的CSS样式表中取得样式。 + 在这个例子中,我们在元数据中用内联的方式定义了动画样式(`color`和`transform`)。在即将到来的一个Angular版本中,还将支持从组件的CSS样式表中提取样式。 :marked We now have an animation defined but it is not yet used anywhere. We can change that by attaching it to one or more elements in the component's template using the "`@triggerName`" syntax: - 我们现在定义了一个动画,但是它还没有被用在任何地方。要想使用它,我们可以在模板中用`@triggerName`语法把它附加到一个或多个元素上。 + 我们刚刚定义了一个动画,但它还没有被用到任何地方。要想使用它,我们可以在模板中用`@triggerName`语法来把它附加到一个或多个元素上。 +makeExample('animations/ts/app/hero-list-basic.component.ts', 'template')(format=".") @@ -138,24 +138,24 @@ figure or `active`, since that's what we have defined animation states for. 这里,我们把该动画触发器添加到了由`ngFor`重复出来的每一个元素上。每个重复出来的元素都有独立的动画效果。 - 我们把`@triggerName`属性(Attribute)的值设置成表达式`hero.state`。这个值应该或者是`inactive`或者是`active`,因为我们刚刚为它们定义过动画状态。 + 我们把`@triggerName`属性(Attribute)的值设置成表达式`hero.state`。这个值应该或者是`inactive`或者是`active`,因为我们刚刚为它们俩定义过动画状态。 With this setup, an animated transition is shown whenever a hero object changes state! Here's the full component implementation: - 通过这些设置,一旦英雄对象的状态发生了变化,就会触发一个带动画效果的过渡。下面是完整的组件实现: + 通过这些设置,一旦英雄对象的状态发生了变化,就会触发一个转场动画。下面是完整的组件实现: +makeExample('animations/ts/app/hero-list-basic.component.ts') :marked ## States and Transitions - ## 状态与转换 + ## 状态与转场 Angular animations are defined in terms of logical **states** and **transitions** between states. - Angular动画是由**状态**和**状态之间的过渡效果**所定义的。 + Angular动画是由**状态**和**状态之间的转场效果**所定义的。 An animation state is a string value that we define in our application code. In the example above we used the states `'active'` and `'inactive'` based on the logical state of @@ -164,11 +164,11 @@ figure component's template. 动画状态是一个由程序代码中定义的字符串值。在上面的例子中,我们基于英雄对象的逻辑状态使用了`'active'`和`'inactive'`这两种状态。 - 状态的来源可以是像本例中这样简单的对象属性,也可以由方法计算出的值。重点是,我们得能从组件模板中读取它。 + 状态的来源可以是像本例中这样简单的对象属性,也可以是由方法计算出来的值。重点是,我们得能从组件模板中读取它。 We can define *styles* for each animation state: - 我们可以为每个动画状态定义*一组样式*: + 我们可以为每个动画状态定义了*一组样式*: +makeExample('animations/ts/app/hero-list-basic.component.ts', 'states')(format=".") @@ -178,13 +178,13 @@ figure *as long as it remains in that state*. In that sense, we are defining more than just animations here. We're actually defining what styles the element has in different states. - 这些`state`具体定义了每个状态的*最终样式*。一旦元素过渡到那个状态,该样式就会被应用到此元素上,*当它留在此状态时*,这些样式也会一直保持着。 - 从这个意义上说,我们其实并非仅仅在定义这里的动画,而是在定义该元素在不同状态时应该具有的样式。 + 这些`state`具体定义了每个状态的*最终样式*。一旦元素转场到那个状态,该样式就会被应用到此元素上,*当它留在此状态时*,这些样式也会一直保持着。 + 从这个意义上讲,这里我们其实并不只是在定义动画,而是在定义该元素在不同状态时应该具有的样式。 Once we have states, we can define *transitions* between the states. Each transition controls the timing of switching between one set of styles and the next: - 定义完状态,我们就能定义在状态之间的各种*过渡*了。每种过渡都会控制在一组样式和下一组样式之间切换的时间线: + 定义完状态,我们就能定义在状态之间的各种*转场*了。每个转场都会控制一条在一组样式和下一组样式之间切换的时间线: +makeExample('animations/ts/app/hero-list-basic.component.ts', 'transitions')(format=".") @@ -195,7 +195,7 @@ figure.image-display If we have the same timing configuration for several transitions, we can combine them into the same `transition` definition: - 如果多种过渡都有同样的时间线配置,我们就可以把它们合并金同一个`transition`定义中: + 如果多个转场都有同样的时间线配置,我们就可以把它们合并进同一个`transition`定义中: +makeExample('animations/ts/app/hero-list-combined-transitions.component.ts', 'transitions')(format=".") @@ -203,7 +203,7 @@ figure.image-display When we have the same timing for both directions of a transition, as we do in the previous example, we can use the `<=>` shorthand syntax: - 如果我们要对一个过渡的两种方向都使用相同的时间线(就像前面的例子中那样),我们可以使用`<=>`这种简写语法: + 如果我们要对同一个转场的两个方向都使用相同的时间线(就像前面的例子中那样),就可以使用`<=>`这种简写语法: +makeExample('animations/ts/app/hero-list-twoway.component.ts', 'transitions')(format=".") @@ -214,8 +214,8 @@ figure.image-display When the transition finishes, none of these styles will be kept because they're not defined in a `state`. - 有时我们会希望一些样式只在动画期间生效,但是在结束后并不保存它们。我们可以把这些样式内联在`transition`中进行定义。 - 在这个例子中,该元素立刻获得一组样式,然后动态过渡到下一个状态。当过渡结束时,这些样式并不会保持住,因为它们并没有被定义在`state`中。 + 有时我们会希望一些样式只在动画期间生效,但在结束后并不保留它们。这时我们可以把这些样式内联在`transition`中进行定义。 + 在这个例子中,该元素会立刻获得一组样式,然后动态转场到下一个状态。当转场结束时,这些样式并不会被保留,因为它们并没有被定义在`state`中。 +makeExample('animations/ts/app/hero-list-inline-styles.component.ts', 'transitions')(format=".") @@ -227,15 +227,15 @@ figure.image-display The `*` ("wildcard") state matches *any* animation state. This is useful for defining styles and transitions that should apply regardless of which state the animation is in. For example: - `*`(通配符)状态匹配*任何*动画状态。当定义那些不用管当前处于什么状态的样式及过渡时,这会很有用。比如: + `*`(通配符)状态匹配*任何*动画状态。当定义那些不需要管当前处于什么状态的样式及转场时,这很有用。比如: * The `active => *` transition applies when the element's state changes from `active` to anything else. - * 当该元素的状态从`active`变成任何其它状态时,`active => *`过渡就会生效。 + * 当该元素的状态从`active`变成任何其它状态时,`active => *`转场都会生效。 * The `* => *` transition applies when *any* change between two states takes place. - * 当*任何*两个状态之间切换时,`* => *`过渡就会生效。 + * 当在*任意*两个状态之间切换时,`* => *`转场都会生效。 figure.image-display img(src="/resources/images/devguide/animations/ng_animate_transitions_inactive_active_wildcards.png" alt="The wildcard state can be used to match many different transitions at once" width="400") @@ -251,13 +251,13 @@ figure.image-display added or because it has been removed. The `void` state is useful for defining "enter" and "leave" animations. - 有一种叫做`void`的特殊状态,它可以应用于任何动画。当元素*没有*被附加到视图时,它就会生效。这种情况可能是由于它尚未被添加或者已经被移除了。 + 有一种叫做`void`的特殊状态,它可以应用在任何动画中。它表示元素*没有*被附加到视图。这种情况可能是由于它尚未被添加进来或者已经被移除了。 `void`状态在定义“进场”和“离场”的动画时会非常有用。 For example the `* => void` transition applies when the element leaves the view, regardless of what state it was in before it left. - 比如当一个元素离开视图时,`* => void`过渡就会生效,而不管它在离场以前是什么状态。 + 比如当一个元素离开视图时,`* => void`转场就会生效,而不管它在离场以前是什么状态。 figure.image-display img(src="/resources/images/devguide/animations/ng_animate_transitions_void_in.png" alt="The void state can be used for enter and leave transitions" width="400") @@ -277,7 +277,7 @@ figure Using the `void` and `*` states we can define transitions that animate the entering and leaving of elements: - 使用`void`和`*`状态,我们可以定义元素进场与离场时的过渡动画: + 使用`void`和`*`状态,我们可以定义元素进场与离场时的转场动画: * Enter: `void => *` @@ -295,7 +295,7 @@ figure we want the transforms to be different on enter and leave: The element enters from the left and leaves to the right. - 注意,在这个例子中,这些样式在`transition`定义中被直接应用到了`void`状态,但并没有一个单独的`state(void)`定义。 + 注意,在这个例子中,这些样式在转场定义中被直接应用到了`void`状态,但并没有一个单独的`state(void)`定义。 这么做是因为我们希望在进场与离场时使用不一样的转换效果:元素从左侧进场,从右侧离开。 ## Example: Entering and Leaving from Different States @@ -311,7 +311,7 @@ figure different transitions for entering and leaving based on what the state of the hero is: - 通过把英雄的状态用作动画的状态,我们还能把该动画与以前的状态组合起来设计过渡动画。这让我们能根据该英雄的当前状态为其配置不同的进场与离场动画: + 通过把英雄的状态用作动画的状态,我们还能把该动画跟以前的转场动画组合成一个复合动画。这让我们能根据该英雄的当前状态为其配置不同的进场与离场动画: * Inactive hero enter: `void => inactive` @@ -321,17 +321,17 @@ figure * 激活英雄进场:`void => active` - * Inactive hero leave: `active => void` + * Inactive hero leave: `inactive => void` - * 非激活英雄离场:`active => void` + * 非激活英雄离场:`inactive => void` - * Active hero leave: `inactive => void` + * Active hero leave: `active => void` - * 激活英雄离场:`inactive => void` + * 激活英雄离场:`active => void` We now have fine-grained control over each transition: - 现在我们就对每一种过渡都有了细粒度的控制: + 现在我们就对每一种转场都有了细粒度的控制: figure.image-display img(src="/resources/images/devguide/animations/ng_animate_transitions_inactive_active_void.png" alt="This example transitions between active, inactive, and void states" width="400") @@ -342,20 +342,20 @@ figure.image-display :marked ## Animatable Properties and Units - ## 可参与动画的属性和单位 + ## 可动的(Animatable)属性与单位 Since Angular's animation support builds on top of Web Animations, we can animate any property that the browser considers *animatable*. This includes positions, sizes, transforms, colors, borders and many others. The W3C maintains [a list of animatable properties](https://www.w3.org/TR/css3-transitions/#animatable-properties). - 由于Angular的动画支持是构建在Web Animations标准之上的,所以我们也能支持浏览器认为可以*参与动画*的任何属性。这些属性包括位置(position)、大小(size)、转换(transform)、颜色(color)、边框(border)等很多属性。W3C维护着 - [一个可参与动画的属性列表](https://www.w3.org/TR/css3-transitions/#animatable-properties)。 + 由于Angular的动画支持是基于Web Animations标准的,所以我们也能支持浏览器认为可以*参与动画*的任何属性。这些属性包括位置(position)、大小(size)、变换(transform)、颜色(color)、边框(border)等很多属性。W3C维护着 + [一个“可动”属性列表](https://www.w3.org/TR/css3-transitions/#animatable-properties)。 For positional properties that have a numeric value, we can define a unit by providing the value as a string with the appropriate suffix: - 位置/尺寸类属性可以用一个数字型的值和一个用来定义长度单位的后缀: + 尺寸类属性(如位置、大小、边框等)包括一个数字值和一个用来定义长度单位的后缀: * `'50px'` * `'3em'` @@ -364,7 +364,7 @@ figure.image-display For most dimensinal properties we can also just define a number which is then assumed to be in pixels: - 对大多数的尺寸类属性而言,我们还能只定义一个数字,那表示它使用的是像素(px)数: + 对大多数尺寸类属性而言,我们还能只定义一个数字,那就表示它使用的是像素(px)数: * `50` is the same as saying `'50px'` @@ -383,18 +383,18 @@ figure to have widths and heights that depend on their content and the screen size. These properties are often tricky to animate with CSS. - 有时候,我们想用在动画中的尺寸类样式的值在开始运行之前都是不可知的。比如,一种常见的情况是元素的宽度和高度依赖于它们的内容和屏幕尺寸。这些属性对CSS动画而言通常是相当棘手的。 + 有时候,我们想在动画中使用的尺寸类样式,它的值在开始运行之前都是不可知的。比如,元素的宽度和高度往往依赖于它们的内容和屏幕的尺寸。处理这些属性对CSS动画而言通常是相当棘手的。 With Angular we can use a special `*` property value in these cases. What it means is that the value of this property will be computed at runtime and then plugged into the animation. - 如果用Angular动画,在这种情况下我们可以使用一个特殊的`*`属性值。它表示该属性的值将会在运行期被计算出来,然后插入到该动画中。 + 如果用Angular动画,我们就可以用一个特殊的`*`属性值来处理这种情况。该属性的值将会在运行期被计算出来,然后插入到这个动画中。 The "leave" animation in this example takes whatever height the element has before it leaves and animates from that height to zero: - 这个例子中的“离场”动画会取得该元素在离场前的任意高度,并且把它用动画从那个高度过渡到0: + 这个例子中的“离场”动画会取得该元素在离场前的高度,并且把它从这个高度用动画转场到0高度: +makeExample('animations/ts/app/hero-list-auto.component.ts', 'animationdef')(format=".") @@ -407,7 +407,7 @@ figure The duration, the delay, and the easing function. They are all combined into a single transition *timing string*. - 对每一个动画过渡效果,我们有三种时间线属性可以调整:持续时间(duration)、延迟(delay)和缓动(easing)函数。他们被合并到了一个单一的过渡*时间线字符串*。 + 对每一个动画转场效果,我们有三种时间线属性可以调整:持续时间(duration)、延迟(delay)和缓动(easing)函数。它们被合并到了一个单独的*转场时间线字符串*。 ### Duration @@ -438,13 +438,14 @@ figure transition actually begins. We can define one by adding it in the same string following the duration. It also has the same format options as the duration: - 延迟控制在动画已经被触发,但尚未真正开始转场之前要等待多久。我们可以把它添加到字符串中的持续时间后面,它的选项格式也跟持续时间是一样的: + 延迟控制的是在动画已经触发但尚未真正开始转场之前要等待多久。我们可以把它添加到字符串中的持续时间后面,它的选项格式也跟持续时间是一样的: * Wait for 100ms and then run for 200ms: `'0.2s 100ms'` * 等待100毫秒,然后运行200毫秒:`'0.2s 100ms'`。 ### Easing + ### 缓动函数 The [easing function](http://easings.net/) controls how the animation accelerates @@ -453,15 +454,15 @@ figure can control the easing by adding it as a *third* value in the string after the duration and the delay (or as the *second* value when there is no delay): - [缓动函数](http://easings.net/)用于控制动画在运行期间如何加速和减速。比如:使用`ease-in`函数意味着动画开始时相对缓慢,然后在进行中逐步加速。我们可以通过在这个字符串中的持续时间和延迟后面添加*第三个*值来控制缓动函数(如果没有定义延迟就作为*第二个*值)。 + [缓动函数](http://easings.net/)用于控制动画在运行期间如何加速和减速。比如:使用`ease-in`函数意味着动画开始时相对缓慢,然后在进行中逐步加速。我们可以通过在这个字符串中的持续时间和延迟后面添加*第三个*值来控制使用哪个缓动函数(如果没有定义延迟就作为*第二个*值)。 * Wait for 100ms and then run for 200ms, with easing: `'0.2s 100ms ease-out'` - * 等待100毫秒,然后运行200毫秒,带缓动:`'0.2s 100ms ease-out'` + * 等待100毫秒,然后运行200毫秒,并且带缓动:`'0.2s 100ms ease-out'` * Run for 200ms, with easing: `'0.2s ease-in-out'` - * 运行200毫秒,带缓动:`'0.2s ease-in-out'` + * 运行200毫秒,并且带缓动:`'0.2s ease-in-out'` figure img(src="/resources/images/devguide/animations/animation_timings.gif" alt="Animations with specific timings" align="right" style="width:220px;margin-left:20px" ) @@ -475,7 +476,7 @@ figure 200 milliseconds but they have different easings. The leave begins after a slight delay: - 这里是一组自定义时间线的动态演示。“进场”和“离场”都持续200毫秒,但是它们有不同的缓动函数。“离场”动画在轻微的延迟之后开始: + 这里是两个自定义时间线的动态演示。“进场”和“离场”都持续200毫秒,但它们有不同的缓动函数。“离场”动画会在轻微的延迟之后开始: +makeExample('animations/ts/app/hero-list-timings.component.ts', 'animationdef')(format=".") @@ -492,13 +493,13 @@ figure sets of styles to a more intricate animation that goes through one or more intermediate styles in between. - 通过定义动画的*关键帧*,我们可以把两组样式之间的简单过渡,升级为一种更复杂的动画,它会在转场期间经过一个或多个中间样式。 + 通过定义动画的*关键帧*,我们可以把两组样式之间的简单转场,升级成一种更复杂的动画,它会在转场期间经历一个或多个中间样式。 For each keyframe, we can specify an *offset* that defines at which point in the animation that keyframe applies. The offset is a number between zero, which marks the beginning of the animation, and one, which marks the end. - 对于每个关键帧,我们都可以指定一个*偏移量*,用来定义该关键帧应该被用在动画期间的哪个时间点。偏移量是一个介于0(表示动画起点)和1(表示动画终点)之间的数组。 + 对于每个关键帧,我们都可以指定一个*偏移量*,用来定义该关键帧将被用在动画期间的哪个时间点。偏移量是一个介于0(表示动画起点)和1(表示动画终点)之间的数组。 In this example we add some "bounce" to our enter and leave animations with keyframes: @@ -512,18 +513,18 @@ figure measures from 0 to 1. The final timeline of the animation will based on the combination of keyframe offsets, duration, delay, and easing. - 注意,这个偏移量并*不是*使用绝对时间定义的术语。它是个在0到1之间的相对值。动画的最终时间线会基于关键帧的偏移量、持续时间、延迟和缓动函数计算出来。 + 注意,这个偏移量并*不是*用绝对数字定义的时间段,而是在0到1之间的相对值(百分比)。动画的最终时间线会基于关键帧的偏移量、持续时间、延迟和缓动函数计算出来。 Defining offsets for keyframes is optional. If we omit them, offsets with even spacing are automatically assigned. For example, three keyframes without predefined offsets will receive offsets `0`, `0.5`, and `1`. - 为关键帧定义偏移量是可选的。如果省略它们,偏移量会自动根据帧数平均计算出来。例如,三个未曾定义偏移量的关键帧会分别获得偏移量:`0`、`0.5`和`1`。 + 为关键帧定义偏移量是可选的。如果省略它们,偏移量会自动根据帧数平均分布出来。例如,三个未定义过偏移量的关键帧会分别获得偏移量:`0`、`0.5`和`1`。 :marked ## Parallel Animation Groups - ## 并行动画组 + ## 并行动画组(Group) figure img(src="/resources/images/devguide/animations/animation_groups.gif" alt="Parallel animations with different timings, implemented with groups" align="right" style="width:220px;margin-left:20px" ) @@ -532,24 +533,24 @@ figure We've already seen how we can animate multiple style properties at the same time: Just put all of them into the same `style()` definition! - 我们已经知道该如何在同一时间进行多种样式属性的动画:只要把它们都放进同一个`style()`定义就行了! + 我们已经知道该如何在同一时间段进行多个样式的动画了:只要把它们都放进同一个`style()`定义中就行了! But we may also want to configure different *timings* for animations that happen in parallel. For example, we may want to animate two CSS properties but use a different easing function for each one. - 但是我们也可能会希望同时发生的几个动画配置不同的*时间线*。比如,我们可能希望同时对两个CSS属性做动画,但又要为它们定义不同的缓动函数。 + 但我们也可能会希望为同时发生的几个动画配置不同的*时间线*。比如,我们可能希望同时对两个CSS属性做动画,但又得为它们定义不同的缓动函数。 For this we can use animation *groups*. In this example we use groups both on enter and leave so that we can use two different timing configurations. Both are applied to the same element in parallel, but run independent of each other: - 这时我们可以使用动画*组*。在这个例子中,我们同时在进场和离场时使用组,以便我们能为它们使用两种不同的时间线配置。 - 它们被同时应用到同一个元素上,但它们彼此独立运行: + 这种情况下就可以用动画*组*来解决了。在这个例子中,我们同时在进场和离场时使用了组,以便能让它们使用两种不同的时间线配置。 + 它们被同时应用到同一个元素上,但又彼此独立运行: +makeExample('animations/ts/app/hero-list-groups.component.ts', 'animationdef')(format=".") :marked One group animates the element transform and width. The other animates the opacity. - 一个组对元素的`transform`和`width`做动画,另一个则对`opacity`做动画。 + 其中一个动画组对元素的`transform`和`width`做动画,另一个组则对`opacity`做动画。