Created
January 16, 2020 09:44
-
-
Save SimonPadbury/1f613743f9c121640b1ffd6b490fe72d 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
<!-- | |
Just put this at the inside your closing </body> tag. | |
Vanilla JavaScript. | |
--> | |
<div id="vp" style="position: fixed; bottom: 0.5rem; right: 0.5rem; z-index: 999; display: inline-block; background: #555; color: #ffffff; padding: 0 0.5rem 0.125rem; border-radius: 0.25rem;"></div> | |
<script> | |
var vp = document.body.querySelector('#vp'); | |
var viewportWidth = window.innerWidth + 'px'; | |
vp.innerHTML = viewportWidth; | |
window.addEventListener('resize', function () { | |
viewportWidth = window.innerWidth + 'px'; | |
vp.innerHTML = viewportWidth; | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment