TranslationAnimation 类

定义

提供方法,使你能够检索翻译的参数 (移动到动画) 新位置。

public ref class TranslationAnimation sealed : IPropertyAnimation
/// [Windows.Foundation.Metadata.ContractVersion(Windows.UI.Core.AnimationMetrics.AnimationMetricsContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class TranslationAnimation final : IPropertyAnimation
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.UI.Core.AnimationMetrics.AnimationMetricsContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class TranslationAnimation : IPropertyAnimation
Public NotInheritable Class TranslationAnimation
Implements IPropertyAnimation
继承
Object Platform::Object IInspectable TranslationAnimation
属性
实现

Windows 要求

设备系列
Windows Desktop Extension SDK (在 10.0.10240.0 中引入)
API contract
Windows.UI.Core.AnimationMetrics.AnimationMetricsContract (在 v1.0 中引入)

示例

若要获取 TranslationAnimation 类的实例,请先获取动画说明中的动画集合,然后遍查该动画数组以查找任何属于翻译类型的动画。 以下示例演示此过程。 假定 先前 已分配效果参数和 目标 参数。

using Windows.UI.Core.AnimationMetrics;

AnimationDescription animationDescription = new AnimationDescription(effect, target);
foreach (var animation in animationDescription.Animations)
{
    switch (animation.Type)
    {
        case PropertyAnimationType.Scale:
            {
                ScaleAnimation scale = animation as ScaleAnimation;
                // Retrieve scale animation metrics.
            }
            break;
        case PropertyAnimationType.Translation:
            {
                TranslationAnimation scale = animation as TranslationAnimation;
                // Retrieve translation animation metrics.
            }
            break;
        case PropertyAnimationType.Opacity:
            {
                OpacityAnimation opacity = animation as OpacityAnimation;
                // Retrieve opacity animation metrics.
            }
            break;
    }
}

注解

若要执行转换动画,请根据通过此接口的方法提供的计时信息,在布局) 更改后,将项的位置从当前位置移动到其最终位置 (对象的位置。

计时控件 Control1Control2 指定三次方贝塞尔曲线的第一个和第二个控制点的位置。 这两点的含义与 CSS transition-timing-function 属性中的含义相同。 控制点 0 始终 (0,0) 控制点 3 始终 (1,1) 。 Control1Control2 的坐标始终在 0 到 1 的范围内(包括 0 到 1)。

在生成的贝塞尔曲线上,x 坐标表示时间,y 坐标表示进度。 从 (0,0) 到 (1,1) 的原始曲线进行缩放以匹配动画转换的实际持续时间和范围,以便 x=0 是转换的开始时间,x=1 是结束时间,y=0 是动画属性的初始值,y=1 是最终值。 介于 0 和 1 之间的 x 和 y 值表示相应的时间和动画中间值。

属性

Control1

获取三次方贝塞尔曲线的第一个控制点的位置,该曲线描述翻译应如何随时间推移进行动画处理。

Control2

获取三次方贝塞尔曲线的第二个控制点的位置,该曲线描述翻译应如何随时间推移进行动画处理。

Delay

获取指示翻译动画开始和实际开始绘制该动画之间的时间。

Duration

获取应执行翻译动画的时间量。 这不包括延迟。

Type

获取由此 对象表示的动画的类型。

适用于

另请参阅