前言
在网上找了好多的文章,在vue中如何使用animate.css 但是都不是太详细所以在这里自己写一个详细一点的文章
官方文档
一、animate.css?
animate.css是一个使用CSS3的animation制作的动画效果的CSS集合,里面预设了很多种常用的动画,且使用非常简单。
二、使用步骤
1.下载库
npm install animate.css 这个话直接下载的是最新版本的
npm install animate.css@0.0.0 这个@后面表示的是版本号 表示下载指定版本的
使用在线的cdn库 在vue项目中的index.html页面引入
<!DOCTYPE html>
<html lang="">
<head>
<link href="https://cdn.bootcdn.net/ajax/libs/animate.css/4.1.1/animate.compat.min.css" rel="stylesheet">
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
2.引入库
代码如下(示例):
在vue的 main.js 文件中直接引入
import animated from 'animate.css'
3.使用方式
我这个是配合vue的Transition组件使用的,实际使用根基自己项目实际情况自行使用
因为animate.css的版本不同,所以在使用方式上也有所不同
4.0.0版本的使用方式也就是最新的使用方式
<transition enter-active-class="animate__animated animate__fadeInUp"
leave-active-class="animate__animated animate__fadeInDown">
<div v-show="show">
。。。。。。一些代码片段
</div>
</transition>
4.0.0版本一下的使用方式也就是老版本的使用方式
<transition enter-active-class="animated fadeInUp"
leave-active-class="animated fadeInDown">
<div v-show="show">
。。。。。。一些代码片段
</div>
</transition>
总结
本片文中主要讲述了在vue中如何对animate.css进行安装、引入和使用,没有什么难点,只要是版本的问题对使用的方式有所影响。
原文地址:https://blog.csdn.net/qq_45043000/article/details/128465256
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_31430.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。