JavaScriptで横画面の問題を判断します.JavaScriptコードは以下の通りです.
609 ワード
/ :
function hengshuping(){
if(window.orientation==180||window.orientation==0){
alert(" !")
}
if(window.orientation==90||window.orientation==-90){
alert(" !")
}
}
window.addEventListener("onorientationchange" in window ? "orientationchange" : "resize", hengshuping, false);
// window.orientation , 。
。 onorientationchange, 。
http://blog.csdn.net/lee_magnum/articale/detail/17429613