var $horizontal = $('.horizontal_screen'); //가로 모드 프롬프트 스타일 사용자 정의 가능
var $document = $(document) ;
var PreventDefault = function(e) {
e.preventDefault()
}; = function(e) {
$document.on('touchstart touchmove', PreventDefault);
}
var touchend = function(e) {
$document.off('touchstart touchmove' , PreventDefault)
};
function listening(type){
if('add' == type){
//세로 모드
$horizontal.addClass(' hide');
$document.off('touchstart', touchstart);
$document.off('touchend', touchend)
}else{
//가로 모드
$horizontal.removeClass('hide');
$document.on('touchstart', touchstart)
$document.on('touchend', touchend)
}
}
function OrientalChange(){
switch(window.orientation) {
//세로 모드
case 0:
case 180:
listener('add')
break;
//가로 모드
case -90:
case 90:
listener('remove')
break
}
}
$ (window).on("onorientationchange" in window ? "orientationchange" : "resize", orientationChange)
$document.ready(function(){
//가로 모드에서 인터페이스에 진입하면, 프롬프트는 세로 화면만 지원합니다.
if(window.orientation == 90 || window.orientation == -90){
listener('remove');
}
}); >