Advertisement

Vue 采用 animate.css 动画库

阅读量:

官方网站地址为:https://animate.style/>

一、引入:

cdn引入:

于public目录下的index.html文件中插入如下代码段:

复制代码
    <link href="https://cdn.jsdelivr.net/npm/animate.css@3.5.1" rel="stylesheet" type="text/css">
    
    
      
    

通过npm进行引入:

执行命令 npm install animate.css --save 以完成安装

main.js文件中:

引入 animate.css 模块的代码为 import ‘animate.css’;

二、使用:

当前最新版本:(在该版本中,每个类别均采用统一的前缀“animate__”,需特别留意这一细节)

复制代码
    <h1 class="animate__animated animate__bounce">An animated element</h1>
    
    
      
    

其他版本:
在相应位置配置类样式时,需确保默认的类样式“animated”被包含其中:

复制代码
    <h1 class="a

全部评论 (0)

还没有任何评论哟~