vue 项目如何使用animate.css-LMLPHP

 Animate.css是一款酷炫丰富的跨浏览器动画库,它在GitHub上的star数至今已有5.3万+。 在vue项目中我们可以借助于animate.css,用十分简单的代码来实现一个个炫酷的效果!(可以装B了)

一 、安装

在命令行中执行:

使用npm或者cnpm安装

npm install animate.css --save  或 cnpm install animate.css --save

使用yarn安装

yarn add animate.css

二、引入

在main.js全局引入

import animated from 'animate.css'
vue.use(animated)

三、页面使用

类名(animated )需要和引入的名称相同,bounceInLeft是需要的动画效果



<!-- 直接使用animated中的动画class名,注意:必须使用animated这个class名,否则动画会无效 -->
<div class="box animated bounceInLeft"></div>
<template>
    <div class="song">
        <p id="f" @click='fade'>hello</p>
    </div>
</template>
12-10 00:58