Skip to content

Instantly share code, notes, and snippets.

@neekey
Created July 26, 2012 02:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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 : '';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment