vue|vue 项目如何使用animate.css

vue|vue 项目如何使用animate.css
文章图片


【vue|vue 项目如何使用animate.css】 Animate.css是一款酷炫丰富的跨浏览器动画库,它在GitHub上的star数至今已有5.3万+。 在vue项目中我们可以借助于animate.css,用十分简单的代码来实现一个个炫酷的效果!(可以装B了)
一 、安装 在命令行中执行:
使用npm或者cnpm安装

npm install animate.css --save或 cnpm install animate.css --save

使用yarn安装
yarn add animate.css

二、引入 在main.js全局引入
import animated from ‘animate.css‘vue.use(animated)

三、页面使用 类名(animated )需要和引入的名称相同,bounceInLeft是需要的动画效果
"tofalse">

四、踩坑问题 如果完成前三部还是没有效果,可能就是animate.css版本的问题了,直接安装的都是最新版本,而vue官网引入的是3.5.1版本。更换一下版本:
先卸载:
npm或cnpm卸载:
npm uninstall animate.css --save

cnpm uninstall animate.css --save

或者 yarn卸载:
yarn remove animate.css

重新安装:
npm或cnpm安装:
npm install animate.css@3.5.1 --save

cnpm install animate.css@3.5.1 --save

yarn安装:
yarn add animate.css@3.5.1

应该就木有问题了。
本文完?希望能够帮到您,点个赞吧
vue|vue 项目如何使用animate.css
文章图片

    推荐阅读