EasingType Enum

Definition

Indicates how the animation interpolates between keyframes.

public enum EasingType
type EasingType = 
Public Enum EasingType
Inheritance
EasingType

Fields

Back 3

An animation that rectracts its motion slightly before it begins to animate in the path indicated.

Bounce 4

A bouncing animation.

Circle 6

An animation that accelerates or decelerates using a circular function.

Cubic 2

An acceleration or deceleration using the formula f(t) = t3.

Default 0

The default easing type, which is specified in DefaultEasingType. Animations using this easing type follow the guidelines mentioned in the "Timing and easing" section of the docs. For more info, see: https://docs.microsoft.com/windows/uwp/design/motion/timing-and-easing.

Elastic 5

An animation that resembles a spring oscillating back and forth until it comes to rest.

Linear 1

A linear acceleration and deceleration.

Quadratic 7

An animation that accelerates or decelerates using the formula f(t) = t^2.

Quartic 8

An animation that accelerates or decelerates using the formula f(t) = t^4.

Quintic 9

An animation that accelerates or decelerates using the formula f(t) = t^5.

Sine 10

An animation that accelerates or decelerates using a sine formula.

Applies to