모바일에서 좌우 회전 확인
페이지 정보
작성자 최고관리자 작성일 21-02-10 17:37 조회 7,963 댓글 0본문
<script>
function orientationEventHandler()
{
var orientation = window.orientation;
alert(orientation);
if(orientation == 90 || orientation == -90){
}
}
window.orientationchange = orientationEventHandler;
window.addEventListener('orientationchange', orientationEventHandler, false);
</script>
--> 웹에서 고정은 아직까지 안됨.
function orientationEventHandler()
{
var orientation = window.orientation;
alert(orientation);
if(orientation == 90 || orientation == -90){
}
}
window.orientationchange = orientationEventHandler;
window.addEventListener('orientationchange', orientationEventHandler, false);
</script>
--> 웹에서 고정은 아직까지 안됨.
댓글목록 0
등록된 댓글이 없습니다.