私はjQueryプラグインをプログラミングしていますが、これには正確な画面解像度が必要です。
iphoneの応答320*480(iphone 4)はよく知られていますが、正しいサイズ(網膜のサイズ)が必要です。
もちろん、問題は網膜のiPadにも存在します。
その場合はどうすればよいですか?
ご回答ありがとうございます。
/編集
わかりました、私はそれをしました、しかし私は間違いがあると思います
私のスクリプト:
var screenWidth = $(window).width() * window.devicePixelRatio;
var screenHeight = $(window).height() * window.devicePixelRatio;
i get the following values:
portrait:
screenWidth = 640
screenHeight = 960
landscape:
screenWidth = 960
screenHeight = 960
次のメタタグを使用します。
meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=no"