In vue of application Animate.css

Official website: http://www.animate.net.cn/

Online Demo: https://www.dowebok.com/demo/2014/98/ 

1, the installation

cnpm i animate.css -S

2, incorporated in main.js

import animated from 'animate.css';
Vue.use(animated);

3. Application

(Note: You must use this class name animated, animation otherwise invalid then add the category you want to animate.)

<div class="animated slideInLeft"> 
			132132132
</div>

or

<router-view class="animated fadeIn"></router-view>

 

Published 319 original articles · won praise 124 · views 120 000 +

Guess you like

Origin blog.csdn.net/qq_40323256/article/details/104349551