Vue introduces animate.css to use css3 animation

Use address: https: //animate.style/

1. Install the npm package

npm install animate.css --save

2.main.js introduction

import animate from "animate.css";
Vue.use(animate);

3. Use

<div class="animate__animated animate__fadeInRightBig">哈哈哈</div>

Remarks:
Insert picture description here
Insert picture description here

Guess you like

Origin blog.csdn.net/hql1024/article/details/107960110