[jquery] 아이폰 가로(landscape),세로(portrait) 모드 변경 이벤트

jquery 폰의 가로,세로 변경시 이벤트 처리방법


$('body').bind('orientationchange',function(event){
	if (event.orientation == "portrait") {
		//세로
	} else if (event.orientation == "landscape") { 
		//가로
	}
}) 

 

 

 

 

댓글

Designed by JB FACTORY