これは私の趣味のプロジェクトのために持っているものです:ディメンションの使用方法について
var Environment = {
//mobile or desktop compatible event name, to be used with '.on' function
TOUCH_DOWN_EVENT_NAME: 'mousedown touchstart',
TOUCH_UP_EVENT_NAME: 'mouseup touchend',
TOUCH_MOVE_EVENT_NAME: 'mousemove touchmove',
TOUCH_DOUBLE_TAB_EVENT_NAME: 'dblclick dbltap',
isAndroid: function() {
return navigator.userAgent.match(/Android/i);
},
isBlackBerry: function() {
return navigator.userAgent.match(/BlackBerry/i);
},
isIOS: function() {
return navigator.userAgent.match(/iPhone|iPad|iPod/i);
},
isOpera: function() {
return navigator.userAgent.match(/Opera Mini/i);
},
isWindows: function() {
return navigator.userAgent.match(/IEMobile/i);
},
isMobile: function() {
return (Environment.isAndroid() || Environment.isBlackBerry() || Environment.isIOS() || Environment.isOpera() || Environment.isWindows());
}
};
あなたの解決策は良い解決策ではありません。実際のデバイスのディメンションや他の多くの変数に依存します。
参照@stackoverflow.com/questions/6666907/how-to-detect-a-mobile-device-with-javascript –
@TamilSelvanああ、大丈夫です。 'window.height'を使って、それをiPhoneのブラウザビューポートの高さと比較する私の解決方法はどうでしょうか?どのようにそれを行うにはどのようなアイデア? –
'screen.height'を使用してください –