xxxxxxxxxx
33
//Canvas setup
function setup() {
createCanvas(1920, 1080 );
colorMode(HSB);
}
x=100
y=100
outline=55
inline=50
//Drawing Begins
function draw() {
let h=255
let s=0
let b=300
background(h,s,b);
background(0);
strokeWeight(2);
fill(map(mouseX,0,windowWidth,200,0),100,height-mouseY);
textFont("Space Mono");
textAlign("vertAlign, horizAlign")
textSize(24);
textLeading((mouseX / width) * 64);
text("날 밝은 밤 이 공기에 취해 \n내일은 아침에 해가 뜰까 \n오늘도 난 하루의 시작에 달을보겠지 \nOh sleep tight \nuntil the moonlight \n-🎵Nocturnal by SHAUN🎵", 50, 200);
}
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
}