모바일에서 좌우 회전 확인
페이지 정보
본문
<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>
--> 웹에서 고정은 아직까지 안됨.
- 이전글롤링이미지 21.02.10
- 다음글div 또는 table의 tr 펴기 접기 하기...보였다 안보였다 21.02.10
댓글목록
등록된 댓글이 없습니다.