Skip to content

Instantly share code, notes, and snippets.

@markjarzynski
Last active August 29, 2015 14:18
Show Gist options
  • Select an option

  • Save markjarzynski/8dbe7f4d2fe62cec94e9 to your computer and use it in GitHub Desktop.

Select an option

Save markjarzynski/8dbe7f4d2fe62cec94e9 to your computer and use it in GitHub Desktop.
Kuku Kube cheat
// http://106.186.25.143/kuku-kube/en-3/
function cheat () {
var i = document.querySelectorAll("#box span"); for( var x = 0; x < i.length; x++ ) {
if ( i[x].style.backgroundColor != i[0].style.backgroundColor) {
i[x].style.border = "10px magenta solid"; i[x].style.backgroundColor = "black";
}
};
requestAnimationFrame( cheat );
}
cheat();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment