function setup() {
  let cnv = createCanvas(windowWidth, windowHeight);
  cnv.id("my-canvas");
  background(120);  // 设置背景颜色为灰色（120）
  noLoop();
}

function draw() {
  // 你的绘图代码
}
