如何检查手机之间的设备平台;平板电脑在手机屏幕设置屏幕方向?

时间:2013-08-23 08:20:30

标签: cordova sencha-touch

我使用pg-plugin-screen-orientation:https://github.com/their/pg-plugin-screen-orientation

如何检查手机和手机之间的设备平台平板电脑在手机屏幕中设置屏幕方向?

我用 sencha touch

开发

1 个答案:

答案 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');
} 

更多相关内容:

http://docs.sencha.com/touch/2.2.1/#!/api/Ext.os