touches
▶️运行示例代码
let x = 0; function setup() { createCanvas(100, 100); } function draw() { background(204); x = x + 0.1; if (x > width) { x = 0; } line(x, 0, x, height); } function mousePressed() { noLoop(); } function mouseReleased() { loop(); }
舞台区显示的画布内容如下: