配合Velocity.js实现动画效果
Velocity和jQuery.animate的工作方式类似,也是用来实现JavaScript动画的一个很棒的选择,代码如下:
let APPComponent={
template:`
<div>
<button @click="show = !show">
Toggle
</button>
<transition v-on:before-enter="beforeEnter" v-on:enter="enter" v-on:leave="leave" v-bind:css="false">
<p v-if="show">
Demo
</p>
</transition>
</div>
`,
data(){
return {
show:false
}
},
methods:{
//过渡进入之前的组件状态
beforeEnter(el){
el.style.opacity = 0
el.style.transformOrigin = 'left'
},
//过渡进入完成时的状态
enter(el, done){
Velocity(el, { opacity: 1, fontSize: '1.4em' }, { duration: 300 })
Velocity(el, { fontSize: '1em' }, { complete: done })
},
// 过渡离开完成时的状态
leave(el, done) {
Velocity(el, { translateX: '15px', rotateZ: '50deg' }, { duration: 600 })
Velocity(el, { rotateZ: '100deg' }, { loop: 2 })
Velocity(el, {
rotateZ: '45deg',
translateY: '30px',
translateX: '30px',
opacity: 0
}, { complete: done })
}
}
};
new Vue({
el:"#app",
template:`
<APPComponent></APPComponent>
`,
components:{
APPComponent
}
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
上次更新: 2022/06/01 11:01:52