Created
July 23, 2014 15:32
-
-
Save zfkun/f399bc025c1d9b901f5e to your computer and use it in GitHub Desktop.
apple touch startup image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- iOS 6 & 7 iPad (retina, portrait) --> | |
<link href="startup-image-1536x2008.png" | |
media="(device-width: 768px) and (device-height: 1024px) | |
and (orientation: portrait) | |
and (-webkit-device-pixel-ratio: 2)" | |
rel="apple-touch-startup-image"> | |
<!-- iOS 6 & 7 iPad (retina, landscape) --> | |
<link href="startup-image-1496x2048.png" | |
media="(device-width: 768px) and (device-height: 1024px) | |
and (orientation: landscape) | |
and (-webkit-device-pixel-ratio: 2)" | |
rel="apple-touch-startup-image"> | |
<!-- iOS 6 iPad (portrait) --> | |
<link href="startup-image-768x1004.png" | |
media="(device-width: 768px) and (device-height: 1024px) | |
and (orientation: portrait) | |
and (-webkit-device-pixel-ratio: 1)" | |
rel="apple-touch-startup-image"> | |
<!-- iOS 6 iPad (landscape) --> | |
<link href="startup-image-748x1024.png" | |
media="(device-width: 768px) and (device-height: 1024px) | |
and (orientation: landscape) | |
and (-webkit-device-pixel-ratio: 1)" | |
rel="apple-touch-startup-image"> | |
<!-- iOS 6 & 7 iPhone 5 --> | |
<link href="startup-image-640x1096.png" | |
media="(device-width: 320px) and (device-height: 568px) | |
and (-webkit-device-pixel-ratio: 2)" | |
rel="apple-touch-startup-image"> | |
<!-- iOS 6 & 7 iPhone (retina) --> | |
<link href="startup-image-640x920.png" | |
media="(device-width: 320px) and (device-height: 480px) | |
and (-webkit-device-pixel-ratio: 2)" | |
rel="apple-touch-startup-image"> | |
<!-- iOS 6 iPhone --> | |
<link href="startup-image-320x460.png" | |
media="(device-width: 320px) and (device-height: 480px) | |
and (-webkit-device-pixel-ratio: 1)" | |
rel="apple-touch-startup-image"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment