This has been asked multiple times here, but without a solid and understandable answer. This is a web-app, not a native-app.

I'm using:

<link rel="apple-touch-startup-image" href="images/startup.png" />

to display the startup image. It loads fine if the image's resolution is 320x460. I tried using the retina's resolution which is 640x920 (40px are taken out by the status bar), that didn't work. I've tried the @2x thing, that failed too.

Is it even possible [yet]?

link|improve this question

50% accept rate
I found this as an anwser, I will test tomorrow. stackoverflow.com/questions/3707509/… – Savageman Sep 30 '10 at 16:37
I'm the one who posted the answer in that thread, and we determined it's NOT the answer--I thought he was asking about a native app, not a web app. The @2x thing is for native apps. I don't have a solution for you for web apps. – Dan Ray Oct 4 '10 at 12:57
feedback

4 Answers

The documentation (found here) says:

On iPhone and iPod touch, the image must be 320 x 460 pixels and in portrait orientation.

I have tested providing different sizes, but the if the size is not exactly 320x460, the image is simply ignored. There is no clear statement from apple whether it is possible to include high res startup images, but forum posts (eg here: Apple Dev Forum) suggest that it is currently not possible.

link|improve this answer
feedback

Just did the testing... apple have added the "sizes" attribute. so, for hi-res, you add sizes="640x920", etc. I suppose this works for different orientation too.

link|improve this answer
For more info, I found this article (the interesting part is at the end of the article) webdesignne.ws/2011/04/11/… – Jakob Egger Apr 22 '11 at 6:57
Anyone get this to work? – Ian Storm Taylor Jun 24 '11 at 22:07
Haven't tested orientation, but the sizes attr (for Retina) just worked for me on iOS5. – David Kaneda Oct 19 '11 at 23:18
feedback

This will add a Splash Screen to your Web App. Below are the sizes you’ll need for both iPad and iPhone/iPod Touch, these include the status bar area as well.

iPad Landscape – 1024 x 748

<link rel="apple-touch-startup-image" sizes="1024x748" href="img/splash-screen-1024x748.png" />

iPad Portrait – 768 x 1004

<link rel="apple-touch-startup-image" sizes="768x1004" href="img/splash-screen-768x1004.png" />

iPhone/iPod Touch Portrait – 320 x 480 (standard resolution)

<link rel="apple-touch-startup-image" href="img/splash-screen-320x460.png" />

iPhone/iPod Touch Portrait – 640 x 960 pixels (Retina Display high-resolution)

<link rel="apple-touch-startup-image" sizes="640x960" href="img/splash-screen-640x960.png" /> 

If creating a Web App for iPad compatibility it’s recommended that both Landscape and Portrait sizes are used.

link|improve this answer
feedback

I found a solution and blogged about it here: http://www.paulofierro.com/archives/568/

Basically the sizes property and media queries will not work. You have to inject the high-res startup image via JavaScript once your page is loaded. Hacky but works.

link|improve this answer
Paulo: take a look meta.stackoverflow.com/questions/104227/… – belisarius Sep 1 '11 at 12:06
Wasn't aware. Thanks. – Paulo Fierro Oct 24 '11 at 9:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.