common.js 206 B

123456789
  1. function getClientWidth(){
  2. var width = document.documentElement.clientWidth;
  3. return width;
  4. }
  5. function getClientHeight(){
  6. var height = document.documentElement.clientHeight;
  7. return height;
  8. }