quasar-framework
Version:
Simultaneously build desktop/mobile SPA websites & phone/tablet apps with VueJS
20 lines (18 loc) • 363 B
JavaScript
export default {
enter (el, done) {
Velocity(el, 'stop')
Velocity(el, 'slideDown', done)
},
enterCancelled (el) {
Velocity(el, 'stop')
el.removeAttribute('style')
},
leave (el, done) {
Velocity(el, 'stop')
Velocity(el, 'slideUp', done)
},
leaveCancelled (el) {
Velocity(el, 'stop')
el.removeAttribute('style')
}
}