Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 3rd, 2012  |  syntax: None  |  size: 3.58 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!-- Mobile meta & links -->
  2.  
  3. <!-- Reference
  4.  
  5. Custom Icon and Image Creation Guidelines:
  6. http://developer.apple.com/library/safari/#documentation/UserExperience/Conceptual/MobileHIG/IconsImages/IconsImages.html
  7.  
  8. Configuring Web Applications:
  9. http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html
  10.  
  11. Configuring the Viewport:
  12. http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/UsingtheViewport/UsingtheViewport.html
  13.  
  14. Optimizing Web Content:
  15. http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/OptimizingforSafarioniPhone/OptimizingforSafarioniPhone.html
  16.  
  17. -->
  18.  
  19. <!-- VIEWPORT -->
  20.  
  21. <!-- optimized for mobile -->
  22. <meta name="viewport" content="width=device-width, initial-scale=1" />
  23.  
  24. <!-- optimized for mobile, zoom/scaling disabled -->
  25. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
  26.  
  27.  
  28. <!-- BROWSER CHROME -->
  29.  
  30. <!-- status bar styles: default, black, or black-translucent -->
  31. <meta name="apple-mobile-web-app-status-bar-style" content="black" />  
  32.  
  33. <!-- hides browser chrome -->
  34. <meta name="apple-mobile-web-app-capable" content="yes" />
  35.  
  36.  
  37. <!-- HOME SCREEN ICONS -->
  38.  
  39. <!-- home screen icon -->
  40. <link rel="apple-touch-icon" href="/customIcon.png" />
  41.  
  42. <!-- home screen icon - ipad -->
  43. <link rel="apple-touch-icon" href="/customIcon.png" media="screen and (min-device-width: 481px) and (max-device-width: 1024px)" />
  44. <!-- or -->
  45. <link rel="apple-touch-icon" sizes="72x72" href="/customIcon.png" />
  46.  
  47. <!-- home screen icon - high res -->
  48. <link rel="apple-touch-icon" href="/customIcon.png" media="screen and (-webkit-min-device-pixel-ratio: 2)" />
  49. <!-- or -->
  50. <link rel="apple-touch-icon" sizes="114x114" href="/customIcon.png" />
  51.  
  52. <!-- home screen icon, omits iOS embellishments, works in Android -->
  53. <link rel="apple-touch-icon-precomposed" href="/customIcon.png" />
  54.  
  55. <!-- home screen icon, omits iOS embellishments - ipad -->
  56. <link rel="apple-touch-icon-precomposed" href="/customIcon.png" media="screen and (min-device-width: 481px) and (max-device-width: 1024px)" />
  57. <!-- or -->
  58. <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/customIcon.png" />
  59.  
  60. <!-- home screen icon, omits iOS embellishments - high res -->
  61. <link rel="apple-touch-icon-precomposed" href="/customIcon.png" media="screen and (-webkit-min-device-pixel-ratio: 2)" />
  62. <!-- or -->
  63. <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/customIcon.png" />
  64.  
  65.  
  66. <!-- STARTUP IMAGES -->
  67.  
  68. <!-- startup image for web apps (320x480) -->
  69. <link rel="apple-touch-startup-image" href="/customIcon.png" />
  70.  
  71. <!-- startup image for web apps - high res (640x940) -->
  72. <link rel="apple-touch-startup-image" href="/customIcon.png" media="screen and (-webkit-min-device-pixel-ratio: 2)" />
  73. <!-- or -->
  74. <link rel="apple-touch-startup-image" sizes="640x940" href="/customIcon.png" />
  75.  
  76. <!-- startup image for web apps - iPad - landscape (1024x748) -->
  77. <link rel="apple-touch-startup-image" href="/customIcon.png" media="screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape)" />
  78. <!-- or -->
  79. <link rel="apple-touch-startup-image" sizes="748x1024" href="/customIcon.png" />
  80.  
  81. <!-- startup image for web apps - iPad - portrait (768x1004) -->
  82. <link rel="apple-touch-startup-image" href="/customIcon.png" media="screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait)" />
  83. <!-- or -->
  84. <link rel="apple-touch-startup-image" sizes="768x1004" href="/customIcon.png" />