safari meta tag
1. apple-mobile-web-app-capable
<meta name="apple-mobile-web-app-capable" content="yes">
content값이 yes로 지정하면 풀스크린모드로 자동하고 그렇지 않으면 일반모드로 작동한다.
window.navigator.standalone의 속성을 사용해서 풀스크린모드를 표시할수 있다.
content : yes|no
iphone os 2.1 이상
2. apple-mobile-web-app-status-bar-style
<meta name="apple-mobile-web-app-status-bar-style" content="black">
content : black | black-translucent | default
iphone os 2.1 이상
3. format-detection
<meta name="format-detection" content="telephone=no">
content : default | no
전화번호형식의 경우 자동으로 전화걸기로 연결되는데 no로 할 경우 불가능하도록 한다.
iphone os 1.0 이상
4. viewport
<meta name="viewport" content="width=320, initial-scale=2.3, user-scalable=no">
content : width [number | device-width], height [number | device-height], initial-scale [number], user-scalable [no | yes]
width : default 980, 범위 200 ~10,000 (숫자로 입력) 픽셀로 표시됨
height : width값에 따라 비유로 적용이 됨, 범위 223 ~ 10,000 (숫자로 입력) 픽셀로 표시됨
initial-scale : 웹페이지가 보일 때 최초 한번 적용되어서 보이는 비율, zoom in에 대한 범위를 다음 속성으로 지정할수 있다.
minimum-scale : default 0.25, 범위 0 ~ 10.0
maximun-scale : default 1.6, 범위 0 ~ 10.0
user-scalable : yes | no (no 속성은 스크롤 할때 input box에 enter가 입력 되는 것을 막음.
device-width : 기기 width 픽셀값
device-height : 기기 height 픽셀값
<link rel="apple-touch-icon" href="/custom_icon.png" />
<link rel="apple-touch-startup-image" href="/startup.png" />