启动画面未使用 ionic 为 pwa 加载 png 文件



我在 mac 的初始屏幕上使用了 png 文件,但图像无法加载。该应用程序加载并工作,它是带有 png 文件的初始屏幕不起作用。

我的索引.js文件上有以下内容:

if (useSplashScreen) {
splashScreen = new CapacitorSplashScreen(mainWindow, {
imageFileName: 'splash.png',
windowHeight: 800,
windowWidth: 600,
loadingText: 'Starting Pinpoint...',
backgroundColor: '#cc0099',
textPercentageFromTop: 85
});
splashScreen.init();

}

尝试在 config.xml 中为您的浏览器添加启动画面。

<platform name="browser">
<preference name="SplashScreen" value="assets/img/loading_screen.svg" />
</platform>

最新更新