使用animate库

2022-12-21 21:15:17 浏览数 (1)

# vue中使用Animate.css库

# 自定义过渡类名

我们可以通过以下 attribute 来自定义过渡类名:

  • enter-class
  • enter-active-class
  • enter-to-class (2.1.8 )
  • leave-class
  • leave-active-class
  • leave-to-class (2.1.8 ) Animate.css (opens new window)结合使用十分有用。

# 使用Animate.css库

代码语言:javascript复制
<transition
            name="custom-classes-transition"
            enter-active-class="animated tada"
            leave-active-class="animated bounceOutRight"
            >
    <p v-if="show">hello</p>
</transition>

按 官方文档 (opens new window) 引入Animate.css库,再配合vue的自定义过渡类名,指定enter-active-classleave-active-class的自定义类,两者都要有animated类,用于说明其使用的是Animate.css库,再根据需求定义另外一个动画类名

动画类名:在 Animate官网 (opens new window) 获取。

0 人点赞