我想在闪屏中添加gif图片,但它不是wokring。我使用的是ionic 5.0.7版本,如果有谁知道的话,请帮忙。
最好用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));
看一个例子 此处