Gif图片在ionic-5的闪屏中无法使用。

问题描述 投票:-1回答:1

我想在闪屏中添加gif图片,但它不是wokring。我使用的是ionic 5.0.7版本,如果有谁知道的话,请帮忙。

ionic4
1个回答
1
投票

最好用Lottie在闪屏中添加动画。

安装。

ionic cordova plugin add cordova-plugin-lottie-splashscreen
npm install @ionic-native/lottie-splash-screen

代码:

import { LottieSplashScreen } from '@ionic-native/lottie-splash-screen/ngx';


constructor(private lottieSplashScreen: LottieSplashScreen) { }

...


this.lottieSplashScreen.show('www/lottie/animation.json', false, 1024, 768)
  .then((res: any) => console.log(res))
  .catch((error: any) => console.error(error));

看一个例子 此处

© www.soinside.com 2019 - 2024. All rights reserved.