jquery 폰의 가로,세로 변경시 이벤트 처리방법
$('body').bind('orientationchange',function(event){
if (event.orientation == "portrait") {
//세로
} else if (event.orientation == "landscape") {
//가로
}
})
jquery 폰의 가로,세로 변경시 이벤트 처리방법
$('body').bind('orientationchange',function(event){
if (event.orientation == "portrait") {
//세로
} else if (event.orientation == "landscape") {
//가로
}
})