xxxxxxxxxx
89
// Seyoung Lee
// Valentine Assignment
//-----"Random text function"------
let words = [
"Enjoy today :)",
"Accept yourself",
"Be who you are :)",
"Wherever life plants you, bloom with grace",
"You can and you will :)",
"It’s okay to not be okay :)",
"Wishing you peace forever :)",
"Every moment is a fresh beginning",
"Slow down, you’re doing just fine :)",
"Each day provides its own gifts",
"Everyday, every moment",
"Flowers wither and bloom"
];
let choice = 0;
let displayWords;
function setup() {
createCanvas(400, 400);
displayWords = wordsGen();
//-----Random color function----
var colors = [color(153, 155, 132, 255), color(216, 172, 156, 255),
color(239, 217, 209, 255), color(212, 224, 200),
color(204, 164, 172), color(223, 226, 219, 255),
color(241, 181, 181, 255), color(170, 183, 174, 255),
color(244, 233, 231, 255), color(243, 220, 214, 255),
color(229, 197, 198, 255)
];
//----Background------
background(random(colors))
//------Heart-------
fill(random(colors))
stroke(153, 155, 132, 255);
strokeWeight(2);
beginShape();
vertex(200, 350);
bezierVertex(200, 250, 350, 200, 350, 150);
bezierVertex(350, 100, 250, 50, 200, 140);
bezierVertex(150, 50, 50, 100, 50, 150);
bezierVertex(50, 200, 200, 250, 200, 350);
endShape();
//------Text-------
noStroke();
fill(100);
textAlign(CENTER);
textSize(10);
textFont("Special Elite");
textStyle(BOLD);
text(displayWords, width / 2, height / 2);
}
function wordsGen() {
choice = floor(random(0, 10));
return words[choice];
}
function draw() {
frameRate(10);
x = 50
var colors = [color(153, 155, 132, x), color(216, 172, 156, x),
color(239, 217, 209, x), color(212, 224, 200),
color(204, 164, 172), color(223, 226, 219, x),
color(241, 181, 181, x), color(170, 183, 174, x),
color(244, 233, 231, x), color(243, 220, 214, x),
color(229, 197, 198, x)
];
//-------spots----------
x = random(0, 400);
y = random(0, 400);
fill(random(colors));
noStroke();
circle(x, y, 10);
}