Vue如何做动画

使用bower下载animate.css,配合vue的transitions就可以做动画,需要给运动的元素加class="animated" transition="bounce",例如:

 new Vue({
    el:"#id",
    data:{},
    methods:{},
    transitions:{
        bounce:{
            enterClass:"zoomInLeft",
            leaveClass:"zoomOutRight"
        }
    }
 });

你可能感兴趣的:(Vue如何做动画)