Link
apple-touch-startup-image
An Apple extension that supplies a launch image for a web app opened from the Home Screen.
Code examples
Good example
<link rel="apple-touch-startup-image" href="/launch-portrait.png" media="(orientation: portrait)">Limits this launch image to portrait orientation. Production sites usually need more specific size queries.
Avoid this example
<link rel="apple-touch-startup-image">Has no href, so Safari has no launch image to load.
Recommendations
- 01Match the target displayUse media queries to provide images for the intended viewport, pixel ratio, and orientation. Apple requires the launch image to match the device dimensions.
- 02Prefer a designed launch screenA static launch image can become stale as the interface changes. Keep it visually simple and test every declared device variant.