Update sequential-entrance.vue
This commit is contained in:
parent
e92e83746d
commit
0a3a0f3beb
@ -65,11 +65,9 @@ export default Vue.extend({
|
|||||||
this.index++;
|
this.index++;
|
||||||
},
|
},
|
||||||
leave(el, done) {
|
leave(el, done) {
|
||||||
setTimeout(() => {
|
el.style.opacity = 0;
|
||||||
el.style.opacity = 0;
|
el.style.transform = this.direction === 'down' ? 'translateY(64px)' : 'translateY(-64px)';
|
||||||
el.style.transform = this.direction === 'down' ? 'translateY(64px)' : 'translateY(-64px)';
|
setTimeout(done, 700);
|
||||||
setTimeout(done, 700);
|
|
||||||
}, this.delay * el.dataset.index)
|
|
||||||
},
|
},
|
||||||
focus() {
|
focus() {
|
||||||
this.$slots.default[0].elm.focus();
|
this.$slots.default[0].elm.focus();
|
||||||
|
Loading…
Reference in New Issue
Block a user