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

vue2.0学习之动画

时间:2018-03-02 12:37:16      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:near   cti   pos   学习   content   pre   mat   vue2   需要   

下载animate.css
<transition name="v">
<div class="content">需要做动画的内容</div>
</transition>

<style>
  .content{
    //也可以有其他的样式
    transition: all 0.4s linear;
  }
  .v-enter-active, .v-leave-active{
    /* 进入时和离开时的状态 */
    transition: all 0.4s linear;
  }
  v-enter, .v-leave-active{
    /* 刚进入和离开的状态 */
    opacity:0;
    transform:translate3D(24px,0,0);
  }
</style>

  

vue2.0学习之动画

标签:near   cti   pos   学习   content   pre   mat   vue2   需要   

原文地址:https://www.cnblogs.com/sllzhj/p/8492209.html

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