Skip to content

Instantly share code, notes, and snippets.

@MozyOk
Last active December 8, 2017 05:31
Show Gist options
  • Save MozyOk/ca85b6fcabd0ec425a8e7dbf7b236fb1 to your computer and use it in GitHub Desktop.
Save MozyOk/ca85b6fcabd0ec425a8e7dbf7b236fb1 to your computer and use it in GitHub Desktop.
コンソールテトリスのベース
setInterval(function() { color = Math.floor(Math.random() * 16777216).toString(16); console.clear();
console.log("%c■■■■■■■■■\n■■■■■■■■■\n■■■■■■■■■", "background-color: #" + color + ";color: #" + color + ";"); }, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment