Skip to content

Instantly share code, notes, and snippets.

@AndrewUsher
Created February 7, 2018 02:28
Show Gist options
  • Save AndrewUsher/50ff84016b546d8620215ff6747a00a3 to your computer and use it in GitHub Desktop.
Save AndrewUsher/50ff84016b546d8620215ff6747a00a3 to your computer and use it in GitHub Desktop.
console.log rainbow (from Wes Bos)
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