vue3中使用animate.css
作者:互联网
1.安装
npm install animate.css
或
yarn add animate.css
2.在main.ts中引入
import 'animate.css/animate.min.css' //引入
3.组件中使用
一定要加入animated,然后使用animate__xxx即可
<div v-show="show" class="bg-red-300 w-90 animated animate__bounceInDown ">animated</div>
标签:__,vue3,使用,引入,animate,animated,css 来源: https://www.cnblogs.com/lwming/p/15292877.html