vue中使用animate.css动画库

1.安装:

1 npm install animate.css --save

2.引入及使用:

//main.js中
import animated from 'animate.css' 
Vue.use(animated)

3.在vue文件中使用:

1 <div class="ty">
2     <!-- 直接使用animated中的动画class名,注意:必须使用animated这个class名,否则动画会无效 -->
3     <div class="box animated bounceInDown"></div>
4 </div>

 

posted @ 2018-11-29 09:42  前端极客  阅读(4466)  评论(0编辑  收藏  举报