var $horizontal = $('.horizontal_screen'); //ランドスケープモードのプロンプトスタイルをカスタマイズできます
var $document = $(document) ;
varPreventDefault = function(e) {
e.preventDefault();
var touchstart = function(e) {
$document.on('タッチスタート touchmove',
};
var touchend = function(e) {
$document.off('タッチスタート touchmove' ,
};
関数listener(type){
if('add' == type){
//ポートレートモード
$horizontal.addClass(' Hide');
$document.off('touchstart', touchstart);
}else{
//ランドスケープモード
$horizontal.removeClass('hide');
$document.on('touchstart', touchstart);
$document.on('touchend', touchend); >function orientationChange(){
switch(window.orientation) {
//ポートレート モード
ケース 0:
ケース 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');
}); >