わびさびサンプルソース

WindowsやHTML5などのプログラムのサンプルコードやフリーソフトを提供します。

端末の向きの取得

端末の向き、'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






わびさびサンプルソース

WindowsやHTML5などのプログラムのサンプルコードやフリーソフトを提供します。