现有答案不正确:Detect real screen resolution (ignoring browser zoom etc.)
它不会显示屏幕分辨率,而是显示文档大小。
即使应用缩放,有没有办法在Firefox中获得屏幕分辨率?
答案 0 :(得分:1)
好的,感谢https://github.com/mp31415 我有一个有效的解决方案:
var isIE = function () {
if(navigator.appName === "Microsoft Internet Explorer") {
return true;
} else if(navigator.appName === "Netscape" && /Trident/.test(navigator.userAgent)) { // IE 11
return true;
}
return false;
};
var isFF = function () {
return !!navigator.userAgent.match(/firefox/i);
};
var sw = screen.width;
var sh = screen.height;
var zoom = 1;
if (this.isIE()) {
zoom = screen.deviceXDPI / screen.systemXDPI;
zoom = this.round5(zoom*100)/100;
}
else if (this.isFF()) {
zoom = window.devicePixelRatio;
}
if (zoom != 1) {
sh = this.round10(sh * zoom);
sw = this.round10(sw * zoom);
}
此代码返回Retina显示的缩放分辨率,但其他方式正常。