flashy flash cards
what did I do wrong
draw = function() {
fill(0, 255, 68); // start color
if (mouseIsPressed && mouseX>=50 && mouseX<=300) {
fill(33, 112, 52); // click color
}
rect(50, 300, 250, 100); // the button
// The button text
fill(0, 0, 0);
textSize(30);
text("PRESS ME!", 93, 193);
};
Влезте в услугата, за да оставите коментар.