Documentation / @ripl/core / TransitionOptions
Interface: TransitionOptions
Defined in: packages/core/src/animation/types.ts:14
Configuration for a transition animation.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
delay | number | The delay before the transition starts, in milliseconds. | packages/core/src/animation/types.ts:22 |
direction | TransitionDirection | The playback direction of the transition. | packages/core/src/animation/types.ts:24 |
duration | number | The transition's duration in milliseconds. | packages/core/src/animation/types.ts:16 |
ease | Ease | The easing function applied to the transition's progress. | packages/core/src/animation/types.ts:18 |
loop | TransitionLoopMode | Whether and how the transition loops once complete. | packages/core/src/animation/types.ts:20 |