Created
April 16, 2020 20:57
-
-
Save Legends/ac062856d6daa060203203c2b2d6bd42 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const vw = Math.max(document.documentElement.clientWidth, window.innerWidth || 0); | |
| const vh = Math.max(document.documentElement.clientHeight, window.innerHeight || 0); | |
| // Math.max: --> return the heighest of these two provided | |
| // document.documentElement.clientHeight = Height without scrollbars | |
| // window.innerHeight = Height including scrollbars |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment