Created
November 11, 2017 23:06
-
-
Save lulu-berlin/05d36c4b148f041cea9ad7ce6de993c5 to your computer and use it in GitHub Desktop.
Cheese Cake v2.0
This file contains hidden or 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
license: cc-by-4.0 | |
border: no | |
height: 800 |
This file contains hidden or 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
<!doctype html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Cheesie Cake</title> | |
<meta name="description" content="A Cheesie Website for a Cheesie Mood"> | |
<meta name="author" content="Ya'ar Hever"> | |
<style type="text/css"> | |
body { | |
background-color: crimson; | |
} | |
#cheese { | |
display: inline-block; | |
font-size: 4rem; | |
color: plum; | |
white-space: pre-wrap; | |
word-break: break-all; | |
width: 100%; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="cheese"></div> | |
<script type="text/javascript"> | |
setInterval( | |
function() { | |
var s = []; | |
for (var i = 0; i < 1000; i++) { | |
s.push( i % 2 ? 56459 + ~~(Math.random() * 21) : 55357); | |
} | |
document.querySelector("#cheese").innerHTML = String.fromCharCode.apply(null, s); | |
}, | |
200 | |
); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment