Created
December 6, 2018 10:04
-
-
Save byquanton/ef83060180e117a8a93e40d83589ccad to your computer and use it in GitHub Desktop.
Funny Pictures
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
<html> | |
<head> | |
<title> © Unsplash | Alle 2 Sekunden gibt es ein Neues Bild </title> | |
<style> | |
body { | |
background-image: url("https://picsum.photos/1280/1024/?random"); | |
background-color: #cccccc; | |
} | |
* { | |
cursor: none; | |
} | |
</style> | |
</head> | |
<body> | |
<h6 style="background-color:white;"> © Unsplash | Alle 2 Sekunden gibt es ein Neues Bild </h6> | |
<script> | |
setInterval(function(){location.reload(); | |
},2000) | |
</script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment