Contents

easeOut

Ease-out pacing, which causes an animation to begin quickly and then slow as it progresses.

Declaration

static let easeOut: CAMediaTimingFunctionName

Discussion

This is a Bézier timing function with the control points (0.0,0.0) and (0.58,1.0).

The following code shows how to create a basic animation object using ease-out interpolation.

 let verticalAnimation = CABasicAnimation(keyPath: "position.y")
 verticalAnimation.fromValue = 310
 verticalAnimation.toValue = 10
 verticalAnimation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseOut)

A layer animated with the animation created by the code above and with linearly interpolated horizontal movement would describe a path similar to the following figure.

[Image]

See Also

Constants