I'm creating an iPhone standalone web app in iOS 7. I've specified a startup image, but it is always stretched vertically an extra 40px. I assume this is to compensate for the new transparent status bar style in iOS 7.
I'd like to specify an image that is 1136px high (full height of the iPhone screen) so it does not require stretching, but it doesn't work.
<link rel="apple-touch-startup-image" href="startup_640_1136.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
When I provide an 1136px tall image, nothing shows up. When I provide a 1096px tall image, it shows up stretched vertically, like the left side in this comparison image:
I drew the lines to illustrate how the image was stretched. Expected result is on the right, actual is on the left.