vue transition官方文档中 使用animate.css 是 3.x.x 的
- 正规使用
<h1 class="animate__animated animate__bounce" style="color: white;">An animated element</h1>
- vue 使用 transition
<transition name="bounce">
...
</transition>
.bounce-enter-active {
animation: bounce 0.35s;
}
.bounce-leave-active {
animation: bounce 0.35s;
}