Skip to content

Instantly share code, notes, and snippets.

@dsgeyser
Created June 16, 2021 07:44
Show Gist options
  • Save dsgeyser/52153011375e37728fc5629c199696f9 to your computer and use it in GitHub Desktop.
Save dsgeyser/52153011375e37728fc5629c199696f9 to your computer and use it in GitHub Desktop.
xxqMKNB

Page Visibility API Demo

Video thanks to the Blender Foundation | www.blender.org

Call us at 888-219-2787
window.onload = function() {
document.addEventListener("visibilitychange", () => {
const video = document.getElementById("my-video");
console.log(document.hidden);
return document.hidden ? video.pause() : video.play();
});
};
body {
background-color: gray;
font-family: "Helvetica", sans-serif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment