Skip to content

Instantly share code, notes, and snippets.

@ohrite
Created March 30, 2013 22:24
Show Gist options
  • Save ohrite/5278617 to your computer and use it in GitHub Desktop.
Save ohrite/5278617 to your computer and use it in GitHub Desktop.
Hey Kids, try this at home!
// Your Javascript will go here!
function randomValue() {
return 127 + Math.floor(Math.random() * 128);
}
$(document).ready(function() {
/* Add code from the next steps here. */
$(document).keydown(function(event) {
var color = [randomValue(), randomValue(), randomValue()];
$('body').css('background-color', 'rgb(' + color.join(',') + ')');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment