Created
September 29, 2016 22:56
-
-
Save commuterjoy/350b76c3aad3a475b18fbfc4e41e5d47 to your computer and use it in GitHub Desktop.
Simple slideshow
This file contains 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
<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