Created
April 19, 2016 17:40
-
-
Save lmccart/2bd1e88f96b4ffdd32b967a31a251f94 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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