Properties
Functions
Link copied to clipboard
fun all(duration: CSSTimeNumericValue? = null, timingFunction: TransitionTimingFunction? = null, delay: CSSTimeNumericValue? = null, behavior: TransitionBehavior? = null): Transition.Repeatable
Specify transition details that should apply to every animatable property on this element.
Link copied to clipboard
fun group(properties: Iterable<TransitionProperty.Name>, duration: CSSTimeNumericValue? = null, timingFunction: TransitionTimingFunction? = null, delay: CSSTimeNumericValue? = null, behavior: TransitionBehavior? = null): Array<Transition.Repeatable>
fun group(properties: Iterable<String>, duration: CSSTimeNumericValue? = null, timingFunction: TransitionTimingFunction? = null, delay: CSSTimeNumericValue? = null, behavior: TransitionBehavior? = null): Array<Transition.Repeatable>
A convenience method for when you want to animate multiple properties with the same values.
Link copied to clipboard
fun of(property: TransitionProperty.Name, duration: CSSTimeNumericValue? = null, timingFunction: TransitionTimingFunction? = null, delay: CSSTimeNumericValue? = null, behavior: TransitionBehavior? = null): Transition.Repeatable
fun of(property: String, duration: CSSTimeNumericValue? = null, timingFunction: TransitionTimingFunction? = null, delay: CSSTimeNumericValue? = null, behavior: TransitionBehavior? = null): Transition.Repeatable