Type Alias: TimedTransition
TimedTransition =
object
Defined in: animation/types.ts:48
Transition configuration for timed (duration-based) animations.
See
Properties
alternate?
optionalalternate:boolean
Defined in: animation/types.ts:60
Whether to alternate direction on each repeat
delay?
optionaldelay:number
Defined in: animation/types.ts:54
Delay before starting the animation in milliseconds
duration?
optionalduration:number
Defined in: animation/types.ts:50
Animation duration in milliseconds (default: 300)
easing?
optionaleasing:Easing
Defined in: animation/types.ts:52
Easing function for the animation curve (default: EASE_OUT_CUBIC)
repeat?
optionalrepeat:number
Defined in: animation/types.ts:56
Number of times to repeat the animation (0 = no repeat, -1 = infinite)
reverse?
optionalreverse:boolean
Defined in: animation/types.ts:58
Whether to play the animation in reverse