问题
I tried to set a splash-screen image for my phonegap app.When I set a static image such as png, everything goes well. Now I need a loading animation on my splash screen and I try to set a gif image instead of static image. However, after I do that I can not start my app any more.
Can phonegap splash-screen be set as gif image?
回答1:
This isn't something Cordova/PhoneGap supports out of the box.
But if you're willing to dive in to Java/ObjC here are some possible approaches:
- You could make a custom plugin for which ever platform you are targeting that could do your animations for you. Examples here and here.
- Different from the previous approach you could make a custom plugin that loads another webview with the GIF image in that.
Both of these suggestions require a custom plugin or at the very least modifying an existing one.
来源:https://stackoverflow.com/questions/16893521/can-phonegap-splash-screen-display-gif-image