Jquery Mobile splash screen problem
I am working on a web app, and I am having an issue with the splash screen when you add the site to your homescreen. I've looked around and removed & re-added the line of code and it is still not开发者_运维技巧 working.
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" href="im/h-apple-touch-icon.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-startup-image" href="img/loading-splash.png">
that is what i have in my head tag, and I'm just stuck as to why it will not work.
The reason that you are getting a white screen is that the image you are trying to load does not exist on the server.
<link rel="apple-touch-startup-image" href="img/loading-splash.png">
links to this address: http://kensingtonchurch.org/aaron_dev/img/loading-splash.png
I get a 404 when trying to find it.
Suggestions for debugging mobile apps:
- Install the User Agent Switcher for Firefox
- Install Firebug to trouble shoot.
Also, Opera has some sort of Remote debugging utility called Dragonfly. I've never used it, but it could be useful.
精彩评论