Vue如何做动画
2017-02-16 本文已影响0人
记忆是条狗
使用bower下载animate.css,配合vue的transitions就可以做动画,需要给运动的元素加class="animated" transition="bounce",例如:
new Vue({
el:"#id",
data:{},
methods:{},
transitions:{
bounce:{
enterClass:"zoomInLeft",
leaveClass:"zoomOutRight"
}
}
});