xxxxxxxxxx
let colorList = ["#E3170A","#A9E5BB","#FCF6B1","#F7B32B","#2D1E2F"];
let textList = ["日月神教","我愛媽木","我要上數位所","我要買房","我想畢業","Lunatic"];
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
frameRate(10);
}
function draw() {
textSize(60);
fill(255);
text("What's on my mind",(windowWidth/2) - 250 , 60);
// ellipse(mouseX, mouseY, 20, 20);
colorMode(HSB);
translate(0,windowHeight/6);
for(let index=0 ; index < 2 ; index ++){
fill(random(colorList));
// fill(index*20 + random(-50,50) , 80 , 100);
// rect(0,0,100,100);
textSize(random(20,50));
text(random(textList),random(width),random(height));
translate(120,35);
let deg = map(mouseY,0,height,-0.7,0.7);
rotate(deg);
}
}