Tag mobile web

모바일에서 레이어(모달) 팝업 스크롤(Scroll) 적용하는 방법!

안녕하세요~!! 모바일에서 레이어(모달) 팝업 띄웠을 때 레이어 안에서 스크롤이 안되는 경우가 많았습니다. iScroll를 쓰면 아이폰에서 문제가 생기는 이슈가 있었습니다. 스크롤 하게 되면 body쪽 전체 스크롤이 움직이고, 안쪽만 안되는 어려움이 많았다. HTML: <div id="wrap"> <a class="btn_layerpopup" href="#layerPopup">팝업 띄우기</a> <div class="layer-popup" id="layerPopup">… Continue Reading →

모바일 회전시 새로고침 하기

모바일 웹에서 회전을 했을경우 새로고침 하는 소스이다. //회전시 새로고침 window.orientationchange = orientationEventHandler; window.addEventListener(‘orientationchange’, orientationEventHandler, false); function orientationEventHandler(){ var orientation = window.orientation; // 회전했을 경우 처리 if(orientation == 90 || orientation == -90){ location.reload(); } else { // 회전하지 않았을 경우… Continue Reading →

© 2024 부빠기별 — Powered by WordPress

Theme by Anders NorenUp ↑