端末の向き、'window.orientation'プロパティで取得できます。 * 正面 = 0 * 右に傾けた場合 = -90 * 左に傾けた場合 = 90
<!doctype html> <html> <head> <meta charset="UTF-8"> </head> <body> <h1>デバイスピクセル比の取得</h1> <script type="text/javascript" language="javascript"> <!-- document.write( "端末の向き = " + window.orientation + "<br/>" ); // --> </script> </body> </html>
端末の向き = -90