モニタ画面の解像度を求める
説明
モニタ画面の解像度を求めるにはwindow.devicePixelRatioを参照します。1以上の値になります。iPhone 4以降やNew iPad以降のRetina Displayの場合、値は2になります。Android端末の場合は1.5などの数値になるデバイスもあります。[2012/5/3]
サンプルプログラム
var dp = window.devicePixelRatio;
document.write("devicePixelRatio = "+dp);