其他分享
首页 > 其他分享> > Vue过渡配合animate.css库使用

Vue过渡配合animate.css库使用

作者:互联网

// 下包
yarn add animate

// 引入
import "animate.css"
<transition
            appear
            name="animate__animated animate__bounce"
            // 进入
            enter-active-class="动画名称"
            // 退出
            leave-active-class="动画名称"
>
	<h1>
        Hello
    </h1>
</transition>

标签:style,Vue,下包,https,animate,css
来源: https://www.cnblogs.com/bingquan1/p/15838079.html