• Vue动画


    1.transition动画

    <button @click="show = !show">Toggle show</button>
    <transition name="bounce">
    <p v-if="show" style="text-align: center;">Look at me!</p>
    </transition>
    css样式
    bounce-enter-active, .bounce-leave-active {//动画时间
    transition: all .5s
    }
    .fade-enter, .fade-leave-to {//动画的效果
     transform: translateX(-100%);
    opacity: 1;
    transform: scale(2);
    }
    

      

     2.animation动画

    <button @click="show = !show">Toggle show</button>
    <transition name="bounce">
    <p v-if="show" style="text-align: center;">Look at me!</p>
    </transition>
    css样式
    bounce-enter-active, .bounce-leave-active {//动画时间
    animation: fade-in .5s;
    }
      
    keyframes fade-in{
    0%{
    transform: scale(1);
    }
    50%{
    transform: scale(2);
    }
    100%{
    transform: scale(3);
    }
    

      

      

     

  • 相关阅读:
    Jzoj4721 LCS
    Jzoj4721 LCS
    Bzoj3196 二逼平衡树
    Bzoj3196 二逼平衡树
    Jzoj4715 树上路径
    Jzoj4715 树上路径
    031下一个排列
    汉诺塔问题【递归】
    求全排列和组合问题
    030串联所有单词并匹配
  • 原文地址:https://www.cnblogs.com/LWJ-booke/p/7489324.html
Copyright © 2020-2023  润新知