我使用pg-plugin-screen-orientation:https://github.com/their/pg-plugin-screen-orientation
如何检查手机和手机之间的设备平台平板电脑在手机屏幕中设置屏幕方向?
我用 sencha touch
开发答案 0 :(得分:0)
您可以执行此操作:http://try.sencha.com/touch/2.2.0/demos/Ext.os.is/viewer.html
如果您想检查设备类型,可以使用以下内容:
if(Ext.os.is.Phone)
{
console.log('Phone');
}
else if(Ext.os.is.Tablet)
{
console.log('Tablet');
}
else
{
console.log('Others');
}
更多相关内容: