戻る

端末回転イベント

端末回転

端末回転イベント

  • イベント名
  • orientationchange

  • 第1引数
  • イベントオブジェクト

$(window).bind("orientationchange",function(e){
	if(e.orientation == "landscape"){
		//横置きの場合
	}
	else{
		//縦置きの場合
	}
});
inserted by FC2 system