Animate.css在vue中没生效
"animate.css": "^4.1.1",第一步第二步>V4版本使用第一步npm install animate.css --save// oryarn add animate.css//or cdn<head><linkrel="stylesheet"href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4
·
第一步
npm install animate.css --save
// or
yarn add animate.css
//or cdn
<head>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
</head>
第二步
main.js中:
import animated from 'animate.css' // npm install animate.css --save安装,在引入
Vue.use(animated)
Animate.css v4进行了一些改进,改进了动画,并添加了新动画,因此值得进行升级。但这也带来了重大变化:我们为所有Animate.css类添加了前缀-默认为animate__-因此无法直接迁移。
>V4版本使用
// vue模板中:
<div>
<!-- 直接使用animated中的动画class名,注意:必须使用animate__这个class名,否则动画会无效 -->
<div class="out-drawer animate__animated animate__slideInLeft"></div>
</div>
<V4版本使用
// vue模板中:
<div>
<!-- 直接使用animated中的动画class名,注意:必须使用animated这个class名,否则动画会无效 -->
<div class="box animated bounceInDown"></div>
</div>
动画效果演示地址: link.
更多推荐
已为社区贡献3条内容
所有评论(0)