Skip to content

Instantly share code, notes, and snippets.

@mikroskeem
Created October 31, 2014 14:52
Show Gist options
  • Save mikroskeem/db580c34cdc979a094d7 to your computer and use it in GitHub Desktop.
Save mikroskeem/db580c34cdc979a094d7 to your computer and use it in GitHub Desktop.
//Hyper minify
var cyclecolor = function (itemid) {var a,b,c,d,e;a=["red","orange","yellow","green","blue","violet","blue","green","yellow","orange"];b=0;c=a.length;d=function(id){e=document.getElementById(id);e.style.color=a[b];b+=1;if(b>=c){b=0};setTimeout(function(){d(id)},200);};setTimeout(function(){d(itemid);},3000)}
/*
<script type="text/javascript src="cycle.js"></script>
<script type="text/javascript>
cyclecolor("title")
</script>
<h1 id="title">My awesome title</h1>
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment