function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
}
function draw(){
background("#000000")
translate(0,-100)
noStroke()
fill(255)
textSize(100)
textAlign(CENTER)
text('20240528\n物件',width/2,350)
textSize(50)
text("請打開 OpenProcessing 並登入",width/2,600+noise(frameCount/30)*20)
text("從老師的帳號找到這份教材",width/2,660+noise(frameCount/30)*20)
fill(255,100,100)
text("請坐在有廣播的座位上",width/2,720+noise(frameCount/30)*20)
}