모바일에서 세로모드(평소 보는 방향)과 세로모드(동영상등)을 체크해주는 자바스크립트 소스입니다.
주석부분을 참고하시고 유용하게 쓰시길 바랍니다!
1 2 3 4 5 6 7 | $(window).on("orientationchange", function(event){ if(window.matchMedia("(orientation: portrait)").matches){ // 세로 모드 }else if(window.matchMedia("(orientation: landscape)").matches){ // 가로 모드 } }); | cs |
'World Wide Web > javascript' 카테고리의 다른 글
브라우져 체크 (0) | 2017.03.24 |
---|---|
html5 video tag 정지, 재생, 처음부터 재생 시키기 (0) | 2017.03.14 |
youtube iframe API (0) | 2015.07.03 |
팝업 풀사이즈로 띄우기 (0) | 2015.05.14 |
이전 페이지의 주소 받기 (0) | 2014.11.19 |