Skip to content

Instantly share code, notes, and snippets.

@commuterjoy
Created September 29, 2016 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save commuterjoy/350b76c3aad3a475b18fbfc4e41e5d47 to your computer and use it in GitHub Desktop.
Save commuterjoy/350b76c3aad3a475b18fbfc4e41e5d47 to your computer and use it in GitHub Desktop.
Simple slideshow
<script>
// 1.gif, 2.gif, 3.gif etc.
setInterval(() => {
document.body.style.backgroundImage = "url(" + (parseInt(Math.random() * 60) + 1) + ".gif)";
}, 2000);
</script>
<style>
body {
background-size: 100% 100%;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment