반응형
// 모바일 키패드 높이 계산
if (window.visualViewport) {
window.visualViewport.addEventListener('resize', () => {
let visualViewportHeight = window.visualViewport?.height || 0;
let windowHeight = window.innerHeight;
let keyboardHeight = windowHeight - visualViewportHeight;
setKeyboardHeight(keyboardHeight);
});
}
반응형
'ERROR.LOG' 카테고리의 다른 글
같은 내부망 모바일에서 웹서버 접속오류 해결방법 (2) | 2019.03.13 |
---|---|
Unable to install apache as a service for windows with name wampstackApache 해결법 (1) | 2019.03.12 |