Animate.css的使用

一、安装

bash 复制代码
npm install animate.css --save

二、引入

bash 复制代码
import 'animate.css';

三、使用

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



//在js中的方法
function mouseenter(e) {
  e.target.className = "animate__animated animate__bounce";
}
function mouseleave(e) {
  e.target.className = "";
}



//可以自行调节动画速度
/* This only changes this particular animation duration */
// 仅仅修改此动画
.animate__animated.animate__bounce {
  --animate-duration: 2s;
}

/* This changes all the animations globally */
// 全局修改动画
:root {
  --animate-duration: 800ms;
  --animate-delay: 0.9s;
}

四、效果展示

相关推荐
徐小夕3 小时前
我用 AI 撸了个开源"万能预览器":浏览器直接打开 Office、CAD 和 3D 模型
前端·vue.js·github
小码哥_常4 小时前
Flutter Android 延迟加载代码指南:提升应用性能的关键
前端
这是个栗子4 小时前
TypeScript(三)
前端·javascript·typescript·react
kvo7f2JTy4 小时前
基于机器学习算法的web入侵检测系统设计与实现
前端·算法·机器学习
北风toto4 小时前
前端CSS样式详细笔记
前端·css·笔记
nanfeiyan4 小时前
git commit
前端
前端精髓6 小时前
移除 Effect 依赖
前端·javascript·react.js
码云之上7 小时前
从一个截图函数到一个 npm 包——pdf-snapshot 的诞生记
前端·node.js·github
码事漫谈7 小时前
AI提效,到底能强到什么程度?
前端·后端
IT_陈寒7 小时前
React hooks依赖数组这个坑差点把我埋了
前端·人工智能·后端