string AnimationDirection { get; set; }

robot_2Generated
code_blocksInput

Description

Represents the animation-direction CSS property.

Usage

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

// Example of setting the AnimationDirection property
var styles = new BaseStyles();
styles.AnimationDirection = "alternate"; // The animation will alternate direction on each cycle.