Skip to content

Instantly share code, notes, and snippets.

@lmccart
Created April 19, 2016 17:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lmccart/2bd1e88f96b4ffdd32b967a31a251f94 to your computer and use it in GitHub Desktop.
Save lmccart/2bd1e88f96b4ffdd32b967a31a251f94 to your computer and use it in GitHub Desktop.
function setup() {
$('#something').hide();
$('#blah').fadeIn();
$('#mybutton').click(function() {
background(random(255));
})
}
function draw() {
ellipse(width/2 height/2, 50, 50);
}
function keyPressed() {
$('#intro').show();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment