JSON动画渲染成图片

1
2
3
4
5
6
7
8
9
10
11
12
// 安装依赖
yarn add 'lottie-web'

// 使用
import lottie from 'lottie-web'
lottie.loadAnimation({
container: <DOCUMENT节点>,
renderer: 'svg',
loop: true,
autoplay: true,
animationData: <JSON文件>
})