如何删除流星上的启动画面
How to remove splash screen on meteor
如何删除 Cordova 与 MeteorJS 集成的默认启动画面?我似乎在 Meteor Docs.
上找不到任何相关信息
我不知道如何删除启动画面,但要替换默认启动画面,您需要进行如下设置:
App.launchScreens({
'iphone': path,
'iphone_2x': path,
'iphone5': path,
'iphone6': path,
'iphone6p_portrait': path,
'iphone6p_landscape': path,
'ipad_portrait': path,
'ipad_portrait_2x': path,
'ipad_landscape': path,
'ipad_landscape_2x': path,
'android_ldpi_portrait': path,
'android_mdpi_portrait': path,
'android_hdpi_portrait': path,
'android_xhdpi_portrait': path
})
在移动设备中-config.js 在项目根目录中
更多信息您可以查看:https://github.com/phonegap/phonegap/wiki/App-Splash-Screen-Sizes
我想我知道怎么做了。
移动端-config.js:
App.setPreference('SplashScreen', 'CDVSplashScreen')
如何删除 Cordova 与 MeteorJS 集成的默认启动画面?我似乎在 Meteor Docs.
上找不到任何相关信息我不知道如何删除启动画面,但要替换默认启动画面,您需要进行如下设置:
App.launchScreens({
'iphone': path,
'iphone_2x': path,
'iphone5': path,
'iphone6': path,
'iphone6p_portrait': path,
'iphone6p_landscape': path,
'ipad_portrait': path,
'ipad_portrait_2x': path,
'ipad_landscape': path,
'ipad_landscape_2x': path,
'android_ldpi_portrait': path,
'android_mdpi_portrait': path,
'android_hdpi_portrait': path,
'android_xhdpi_portrait': path
})
在移动设备中-config.js 在项目根目录中
更多信息您可以查看:https://github.com/phonegap/phonegap/wiki/App-Splash-Screen-Sizes
我想我知道怎么做了。
移动端-config.js:
App.setPreference('SplashScreen', 'CDVSplashScreen')