美文网首页
Vue文档的过渡 & 动画这章节过程中的一些注意语句摘记一下

Vue文档的过渡 & 动画这章节过程中的一些注意语句摘记一下

作者: 冬至_5b58 | 来源:发表于2019-07-15 23:18 被阅读0次

    1,我们可以通过以下特性来自定义过渡类名:
    enter-class
    enter-active-class
    enter-to-class (2.1.8+)
    leave-class
    leave-active-class
    leave-to-class (2.1.8+)
    他们的优先级高于普通的类名,这对于 Vue 的过渡系统和其他第三方 CSS 动画库,如 Animate.css结合使用十分有用。

    <link href="https://cdn.jsdelivr.net/npm/animate.css@3.5.1" rel="stylesheet" type="text/css">
    
    <div id="example-3">
      <button @click="show = !show">
        Toggle render
      </button>
      <transition
        name="custom-classes-transition"
        enter-active-class="animated tada"
        leave-active-class="animated bounceOutRight"
      >
        <p v-if="show">hello</p>
      </transition>
    </div>
    

    2,定制进入和移出的持续时间:

    <transition :duration="{ enter: 500, leave: 800 }">...</transition>
    

    3,

    相关文章

      网友评论

          本文标题:Vue文档的过渡 & 动画这章节过程中的一些注意语句摘记一下

          本文链接:https://www.haomeiwen.com/subject/jurakctx.html