Created
February 7, 2018 02:28
-
-
Save AndrewUsher/50ff84016b546d8620215ff6747a00a3 to your computer and use it in GitHub Desktop.
console.log rainbow (from Wes Bos)
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
let x=1,up=!1;setInterval(()=>{(75===x||1===x)&&(up=!up),up?x++:x--,console.log(`%c${`■`.repeat(x)}`,`color: hsl(${2*x}, 100%, 50%)`)},10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment