Advertisement
Ininja_2

Page Data

Aug 1st, 2015
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <body id="body" style="margin:0;">
  2. <p id="p1" style="margin:0;"></p>
  3. <script>
  4. var XBody = document.getElementById("body")
  5.  
  6. var HBody = XBody.clientHeight
  7.  
  8. var WBody = XBody.clientWidth
  9.  
  10. document.getElementById("p1").innerHTML = WBody + " x " + HBody
  11.  
  12. console.log(WBody + " x " + HBody)
  13.  
  14. console.log(HBody / WBody)
  15.  
  16. if (HBody / WBody > 1)
  17. {console.log("Portrait")}
  18. else
  19. {console.log("Normal")}
  20. </script>
  21. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement