Transition System
With Vue.js’ transition system you can apply automatic transition effects when elements are inserted into or removed from the DOM. Vue.js will automatically add/remove CSS classes at appropriate times to trigger CSS transitions or animations for you, and you can also provide JavaScript hook functions to perform custom DOM manipulations during the transition.
With the directive v-transition="my-transition"
applied, Vue will:
Try to find a JavaScript transition hooks object registered either through
Vue.transition(id, hooks)
or passed in with thetransitions
option, using the id"my-transition"
. If it finds it, it will call the appropriate hooks at different stages of the transition.Automatically sniff whether the target element has CSS transitions or CSS animations applied, and add/remove the CSS classes at the appropriate times.
If no JavaScript hooks are provided and no CSS transitions/animations are detected, the DOM operation (insertion/removal) is executed immediately on next frame.
All Vue.js transitions are triggered only if the DOM manipulation was applied through Vue.js, either by a built-in directive, e.g. v-if
, or by one of Vue’s instance methods, e.g. vm.$appendTo()
.
CSS Transitions
A typical CSS transition looks like this:
1 | <div v-if="show" v-transition="expand">hello</div> |
You also need to define CSS rules for .expand-transition
, .expand-enter
and .expand-leave
classes:
1 | .expand-transition { |
In addition, you can provide JavaScript hooks:
1 | Vue.transition('expand', { |
The classes being added and toggled are based on the value of your v-transition
directive. In the case of v-transition="fade"
, the class .fade-transition
will be always present, and the classes .fade-enter
and .fade-leave
will be toggled automatically at the right moments. When no value is provided they will default to .v-transition
, .v-enter
and .v-leave
.
When the show
property changes, Vue.js will insert or remove the <div>
element accordingly, and apply transition classes as specified below:
When
show
becomes false, Vue.js will:- Call
beforeLeave
hook; - Apply
v-leave
class to the element to trigger the transition; - Call
leave
hook; - Wait for the transition to finish; (listening to a
transitionend
event) - Remove the element from the DOM and remove
v-leave
class; - Call
afterLeave
hook.
- Call
When
show
becomes true, Vue.js will:- Call
beforeEnter
hook; - Apply
v-enter
class to the element; - Insert it into the DOM;
- Call
enter
hook; - Force a CSS layout so
v-enter
is actually applied, then remove thev-enter
class to trigger a transition back to the element’s original state; - Wait for the transition to finish;
- Call
afterEnter
hook.
- Call
In addition, if you remove an element when its enter transition is in progress, the enterCancelled
hook will be called to give you the opportunity to clean up changes or timers created in enter
. Vice-versa for leaving transitions.
All of the above hook functions are called with their this
contexts set to the associated Vue instances. If the element is the root node of a Vue instance, that instance will be used as the context. Otherwise, the context will be the owner instance of the transition directive.
Finally, the enter
and leave
can optionally take a second callback argument. When you do so, you are indicating that you want to explicitly control when the transition should end, so instead of waiting for the CSS transitionend
event, Vue.js will expect you to eventually call the callback to finish the transition. For example:
1 | enter: function (el) { |
vs.
1 | enter: function (el, done) { |
When multiple elements are being transitioned together, Vue.js batches them and only applies one forced layout.
CSS Animations
CSS animations are applied in the same way with CSS transitions, the difference being that v-enter
is not removed immediately after the element is inserted, but on an animationend
event.
Example: (omitting prefixed CSS rules here)
1 | <span v-show="show" v-transition="bounce">Look at me!</span> |
1 | .bounce-enter { |
JavaScript Only Transitions
You can also use just the JavaScript hooks without defining any CSS rules. When using JavaScript only transitions, the done
callbacks are required for the enter
and leave
hooks, otherwise they will be called synchronously and the transition will finish immediately. The following example registers a custom JavaScript transition using jQuery:
1 | Vue.transition('fade', { |
Then you can use it by providing the transition id to v-transition
, same deal:
1 | <p v-transition="fade"></p> |
If the element with a JavaScript-only transition happens to have other CSS transitions or animations applied, it may intefere with Vue’s transition detection. In such cases you can add css: false
to your transition object to explicitly disable Vue from sniffing CSS-related transitions.
Staggering Transitions
It’s possible to create staggering transitions when using v-transition
with v-repeat
. You can do this either by adding a stagger
, enter-stagger
or leave-stagger
attribute to your transitioned element:
1 | <div v-repeat="list" v-transition stagger="100"></div> |
Or, you can provide a stagger
, enterStagger
or leaveStagger
hook for finer-grained control:
1 | Vue.transition('stagger', { |
Example:
Next: Building Larger Apps.