VUE 项目中怎么使用animated.css动画

这个其实很简单,animated.css里有很多动画。很好用,以下是使用步骤

1,首先安装插件   

  npm install animated.css --save

2. 在main.js里引入   

  import animated from 'animated.css' 

       Vue.use(animated);

3.在想使用的页面元素里直接写animated人类名,另外一定要先家animated这个类名。如下

<div class="animated zoomInLeft zoomOutRight">这里的内容会有动画效果</div>

这里的animated是一定要加的,不然不会有效果。zoomInLeft,zoomOutRight是其中的两个动画类

猜你喜欢

转载自www.cnblogs.com/zyh-code/p/10693403.html
今日推荐