如何让 Lottie 从 zip 文件播放
How to get Lottie to play from a zip file
我正在尝试让 Lottie 从 zip 文件播放。 documentation 中引用了从 zip 文件播放,但我找不到如何实现它的示例。下面是我的代码。在 zip 文件中是 data.json 文件以及所需的图像文件夹,其中包含所有使用的 .png。
lottie.loadAnimation({
container: document.getElementById("goHere"),
renderer: 'svg',
loop: true,
autoplay: true,
path: 'animation.zip' // the path to the animation json
});
该文档与 android
播放器有关。
https://airbnb.io/lottie/android/images.html#zip-file
Unfortunately, the web player doesn't have this feature.
我正在尝试让 Lottie 从 zip 文件播放。 documentation 中引用了从 zip 文件播放,但我找不到如何实现它的示例。下面是我的代码。在 zip 文件中是 data.json 文件以及所需的图像文件夹,其中包含所有使用的 .png。
lottie.loadAnimation({
container: document.getElementById("goHere"),
renderer: 'svg',
loop: true,
autoplay: true,
path: 'animation.zip' // the path to the animation json
});
该文档与 android
播放器有关。
https://airbnb.io/lottie/android/images.html#zip-file
Unfortunately, the web player doesn't have this feature.