AnimationExtensions.AnimateKinetic 方法

定义

设置指定参数并启动动态动画。

public static void AnimateKinetic (this Xamarin.Forms.IAnimatable self, string name, Func<double,double,bool> callback, double velocity, double drag, Action finished = default);
static member AnimateKinetic : Xamarin.Forms.IAnimatable * string * Func<double, double, bool> * double * double * Action -> unit

参数

self
IAnimatable

将对其运行此方法的对象。

name
System.String

动画持续时间内,在其同级和父级动画中应该唯一的动画键。

callback
System.Func<System.Double,System.Double,System.Boolean>

使用连续动画值调用的操作。

velocity
System.Double

动画在每个动画步骤中播放的量。 例如,进度速度 1 以默认速度进行。

drag
System.Double

每一帧播放速度降低的量。 可为负数。

finished
System.Action

动画结束时调用的操作。

适用于