Transition

class Transition(enter: String?, enterStart: String?, enterEnd: String?, leave: String?, leaveStart: String?, leaveEnd: String?)

Definition of a css-transition (enter and/or leave) to be executed when a Tag is mounted to or removed from the DOM.

Constructors

Transition
Link copied to clipboard
js
fun Transition(enter: String? = null, enterStart: String? = null, enterEnd: String? = null, leave: String? = null, leaveStart: String? = null, leaveEnd: String? = null)

Types

Companion
Link copied to clipboard
js
object Companion

Properties

enter
Link copied to clipboard
js
val enter: String? = null
Classes to control the enter-transition.
enterEnd
Link copied to clipboard
js
val enterEnd: String? = null
Optional classes to define the end point of the enter-transition
enterStart
Link copied to clipboard
js
val enterStart: String? = null
Optional classes to define the starting point of the enter-transition
leave
Link copied to clipboard
js
val leave: String? = null
Classes to control the leave-transition.
leaveEnd
Link copied to clipboard
js
val leaveEnd: String? = null
Optional classes to define the end point of the leave-transition
leaveStart
Link copied to clipboard
js
val leaveStart: String? = null
Optional classes to define the starting point of the leave-transition