码迷,mamicode.com
首页 > 其他好文 > 详细

vue的动画和过渡

时间:2018-12-17 21:03:22      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:version   ons   form   active   highlight   ssh   for   button   const   

动画内容

.fade-enter-active, .fade-leave-active {
  transition: all .5s;
}

/*.fade-enter, .fade-leave-to {
  opacity: 0;
}*/
.fade-enter{
    transform: translate(-100px,0);
}

.fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
    transform: translate(500px,0);
}
const vm = new Vue({
    el: ‘#app‘,
    data:{
        isShow: true
    },
    methods:{
        toggle(){
            this.isShow = !this.isShow
        }
    }
});

  

vue的动画和过渡

标签:version   ons   form   active   highlight   ssh   for   button   const   

原文地址:https://www.cnblogs.com/bao2333/p/10133695.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!