我正在构建一个 Web 应用程序,我有两套流体布局,一套用于小屏幕设备,另一套用于大屏幕。?那么我怎样才能把我的基准放在这两个类别之间。?我知道如何在 js 中放置不同的 css 媒体查询和设备检测技术。
但我想要一个通用标准来区分这两类
例如:我有
var deviceIs = {
android : agent.match(/Android/i),
iPhone : agent.match(/iPhone/i),
iPad : agent.match(/iPad/i),
iPod : agent.match(/iPod/i),
BB : agent.match(/BlackBerry/i),
webOS : agent.match(/webOS/i)
};
var currentRES = {
width : screen.width,
height : screen.height
}
但我想创建一个像
var screenTypeis ={
smallScreen : function(){
if(i want this generalized condition){
return true;
}
else{
return false;
}
}
}
例如,设备宽度 > 480 on potrait 和 < 480 && etc etc....