Skip to content

Instantly share code, notes, and snippets.

@julzmon
Created January 21, 2015 14:38
Show Gist options
  • Save julzmon/ece9d0c4bc14864af613 to your computer and use it in GitHub Desktop.
Save julzmon/ece9d0c4bc14864af613 to your computer and use it in GitHub Desktop.
<video autoplay controls id="videoElement">
<source src="rar.mp4">
<source src="rar.webm">
</video>
<script>
var videoElement = document.getElementById("videoElement");
document.addEventListener("visibilitychange", function() {
if (document.hidden) {
videoElement.pause();
} else {
videoElement.play();
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment