Skip to content

Instantly share code, notes, and snippets.

@SimonPadbury
Created January 16, 2020 09:44
Show Gist options
  • Save SimonPadbury/1f613743f9c121640b1ffd6b490fe72d to your computer and use it in GitHub Desktop.
Save SimonPadbury/1f613743f9c121640b1ffd6b490fe72d to your computer and use it in GitHub Desktop.
<!--
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