Skip to content

Instantly share code, notes, and snippets.

@neekey
Created July 26, 2012 02:49
Show Gist options
  • Save neekey/3179970 to your computer and use it in GitHub Desktop.
Save neekey/3179970 to your computer and use it in GitHub Desktop.
获取屏幕分辨率
/**
* 获取屏幕分辨率
*/
var getScreenInfo = function() {
var screen = window.screen;
return screen ? screen.width + 'x' + screen.height : '';
};
@mg-wangxin
Copy link

还需要考虑 devicePixelRatio 不为 1 的情况

var getScreenInfo = function() {
    var screen = window.screen;
    var dpr = window.devicePixelRatio || 1;
    return screen ? screen.width * dpr + 'x' + screen.height * dpr : '';
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment