2011-10-27 6 views

答えて

0

あなたが姿勢変更使用上の何かを変更したい場合:

$(window).bind("orientationchange", function(){ 
    if(window.orientation != 0){ 
     // Do something when sideways 
    }else{ 
     // Do something when normal 
    } 
}); 

幸運を!

関連する問題