This module defines the transition utilities which can be used to perform transition effects based on the CSS Transition standard.
Parameter | Type | Description |
---|---|---|
args | Object |
Optional The arguments which will be mixed into this transition object. |
The callback which will be called right after the end of the transition effect and before the final state is cleared.
The callback which will be called right before the start of the transition effect.
The method which plays multiple transitions one by one.
Parameter | Type | Description |
---|---|---|
args | Array | The array of transition objects which will be played in a chain. |
Method which is used to create the transition object of fade effect.
Parameter | Type | Description |
---|---|---|
node | undefined | The node that the fade transition effect will be applied on. |
config | undefined | The cofig arguments which will be mixed into this transition object. |
Method which is used to create the transition object of flip effect.
Parameter | Type | Description |
---|---|---|
node | undefined | The node that the flip transition effect will be applied on. |
config | undefined | The cofig arguments which will be mixed into this transition object. |
The method which groups multiple transitions and plays them together.
Parameter | Type | Description |
---|---|---|
args | Array | The array of transition objects which will be played together. |
Plays the transition effect defined by this transition object.
Method which is used to create the transition object of a slide effect.
Parameter | Type | Description |
---|---|---|
node | undefined | The node that the slide transition effect will be applied on. |
config | undefined | The cofig arguments which will be mixed into this transition object. |
The callback which will be called right after the end of the transition effect and after the final state is cleared.