Skip to content

Instantly share code, notes, and snippets.

@lulu-berlin
Created November 11, 2017 23:06
Show Gist options
  • Save lulu-berlin/05d36c4b148f041cea9ad7ce6de993c5 to your computer and use it in GitHub Desktop.
Save lulu-berlin/05d36c4b148f041cea9ad7ce6de993c5 to your computer and use it in GitHub Desktop.
Cheese Cake v2.0
license: cc-by-4.0
border: no
height: 800
<!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