Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- script
- jQuery UI
- onclick
- tag
- 깜박임
- absolute
- Semantic tag
- JavaScript
- 가상 클래스
- translate
- 가상 요소
- 구글차트
- 시맨틱 태그
- jQuery
- window.open
- 시맨틱
- 툴팁
- 새창열기
- googlechart
- 태그
- relative
- window open
- HTML
- 팝업
- css3
- Semantic
- Transform
- position
- 페이지 이동
- html5
Archives
- Today
- Total
무아지경
[App]Safe Area :아이폰X 디자인 이슈 본문
IOS Safe Area
마무리 되어간다고 생각했던 APP에서 알 수 없는 오류가 생겼다.
아이폰X 부터 적용된 레이아웃 때문에 생기는 문제다.
footer 밑으로 컨텐츠가 보이고 홈버튼이 보인다.
header도 멀쩡해 보이지만 실제로 보면 같은 문제로 레이아웃이 틀어져 버린다.
해결법
1. viewport-fit=cover 추가
1 2 3 4 | <!-- 기존 뷰포트 --> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=yes,"> <!-- 수정된 뷰포트--> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=yes, viewport-fit=cover"> | cs |
2. CSS 추가
1 2 3 4 5 6 7 8 9 | /* 코딩한 body에 추가 */ body { padding-top: constant(safe-area-inset-top); /* iOS 11.0 */ padding-top: env(safe-area-inset-top); /* iOS 11.2 */ } /* 코딩한 footer에 추가 */ .footer { padding-bottom: constant(safe-area-inset-bottom); /* iOS 11.0 */ padding-bottom: env(safe-area-inset-bottom); /* iOS 11.2 */ } | cs |
참고 : https://blog.phonegap.com/displaying-a-phonegap-app-correctly-on-the-iphone-x-c4a85664c493
참고 : https://webkit.org/blog/7929/designing-websites-for-iphone-x/
'퍼블리싱 > Mobile & APP' 카테고리의 다른 글
[App] 앱등록시 필요한 것들 Part 2 (0) | 2018.10.22 |
---|---|
[App] 앱등록시 필요한 것들 Part 1 (0) | 2018.10.22 |
jQuery Mobile - 앱디자인 템플릿 (0) | 2018.08.28 |
Comments