给你的Vue项目加上炫酷的动画
Posted 前端格仔衫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给你的Vue项目加上炫酷的动画相关的知识,希望对你有一定的参考价值。
Lottie是什么?
Lottie怎么用
1. 通过npm/yarn安装
// npm
npm install --save vue-lottie
// yarn
yarn add vue-lottie
2. 引入到项目中,可以全局也可以单个组件
import Lottie from 'vue-lottie'
// DOM
<lottie :options="defaultOptions" :height="400" :width="400" v-on:animCreated="handleAnimation"/>
// Script
import * as animationData from './assets/XXXXXX.json'
export default {
data () {
return {
defaultOptions: { animationData: animationData },
animationSpeed: 1,
anim: {}
}
},
methods: {
handleAnimation (anim) {
this.anim = anim
}
}
}
具体实现效果如下:
以上是关于给你的Vue项目加上炫酷的动画的主要内容,如果未能解决你的问题,请参考以下文章