码迷,mamicode.com
首页 > Web开发 > 详细

animate和过度动画同时使用.html

时间:2020-02-20 13:09:17      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:span   aci   enter   cti   his   ted   显示   依据   duration   

1将animate和过度动画的类名添加到transition对应的类上

2appear  设置初始样式(页面刷新样式)appear-active-class

3type设置动画时间依据类型(transition或animate)

4可以通过:duration来设置动画时间,补充3

 <style>
    .fade-enter,.fade-leave-to{
      opacity: 0;
    }
    .fade-enter-active,.fade-leave-active{
      transition: opacity 1s;
    }
  </style>
</head>
<body>
  <!-- 
    过程如下:
     显示  fade-enter,fade-enter-active      fade-enter-active,fade-enter-to     空
     隐藏  fade-leave,fade-leave-active      fade-leave-active,fade-leave-to     空
  -->
  <div id="root">
    <transition name=‘fade‘ 
      appear
      appear-active-class=‘animated tada‘
      enter-active-class=‘animated tada fade-enter-active‘
      leave-active-class=‘animated rubberBand fade-leave-active‘
    >
      <h1 v-show=‘show‘>
        最是年少时模样
      </h1>
    </transition>
    <button @click=‘change‘>切换</button>
  </div>
  <script>
    var vm=new Vue({
      el:#root,
      data:{
        show:true
      },
      methods:{
        change:function(){
          this.show=!this.show;
        }
      }
    })
  </script>
</body>

 

animate和过度动画同时使用.html

标签:span   aci   enter   cti   his   ted   显示   依据   duration   

原文地址:https://www.cnblogs.com/em2464/p/12335224.html

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