Represents the animation-direction
CSS property.
Represents the animation-direction
CSS property.
The AnimationDirection
property specifies whether an animation should play in reverse on alternate cycles or not. It can take values such as normal
, reverse
, alternate
, and alternate-reverse
.
// Example of setting the AnimationDirection property var styles = new BaseStyles(); styles.AnimationDirection = "alternate"; // The animation will alternate direction on each cycle.