Skip to content

Instantly share code, notes, and snippets.

@fhefh2015
Created October 10, 2020 12:23
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 fhefh2015/af4fea35c9cd8d129e4382d4543cfcb5 to your computer and use it in GitHub Desktop.
Save fhefh2015/af4fea35c9cd8d129e4382d4543cfcb5 to your computer and use it in GitHub Desktop.
获取屏幕宽度高度
function get_screen_size() {
return {
width: window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth,
height: window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment