Animate.css在vue中的使用

Animate.ss的动画效果超可爱的,用起来也方便,最近用了,记录一下

? vue中animate.css的安装和使用

安装:

npm install animate.css --save
//或者
yarn add animate.css

使用

? 在入口文件中引入

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

? 选择你要的样式

打开官网Animate.css
Animate.css在vue中的使用_第1张图片
? 具体使用
在你需要动画样式的地方把样式名称写上就行
注意!一定要写这个animated
在这里插入图片描述
? animate.css在vue中的入场和离场动画
enter-active-class和leave-active-class在vue官网中有介绍
点击,vue官网走一波



	
		
		动画-未使用动画
		
		
		
	
	
			
		
animate.css的动画效果实现

你可能感兴趣的:(vue,vue)