EasingType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates how the animation interpolates between keyframes.
public enum EasingType
type EasingType =
Public Enum EasingType
- Inheritance
-
EasingType
Fields
Name | Value | Description |
---|---|---|
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. |
Linear | 1 | A linear acceleration and deceleration. |
Cubic | 2 | An acceleration or deceleration using the formula f(t) = t3. |
Back | 3 | An animation that rectracts its motion slightly before it begins to animate in the path indicated. |
Bounce | 4 | A bouncing animation. |
Elastic | 5 | An animation that resembles a spring oscillating back and forth until it comes to rest. |
Circle | 6 | An animation that accelerates or decelerates using a circular function. |
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. |