vue 使用animate.css 4.1.1

292 阅读1分钟

官方文档链接

vue transition官方文档中 使用animate.css 是 3.x.x 的

  1. 正规使用
<h1 class="animate__animated animate__bounce" style="color: white;">An animated element</h1>

  1. vue 使用 transition
<transition name="bounce">
	...
</transition>

.bounce-enter-active {
    animation: bounce 0.35s;
 }
.bounce-leave-active {
     animation: bounce 0.35s;
}