我有一个程序,我希望一个圆圈在按下时改变颜色,然后如果再次按下它会变回原始颜色。
我已经设法在第一次单击时更改它,但是当我再次单击它时不知道如何将其更改回来。
有人对我如何在第二次单击时更改颜色或更改为其他颜色有任何提示吗?
当前代码:
// My function for changing the color when clicked.
function mousePressed () {
for (var i = 0; i < 10; i++) {
bubbles[i].interact();
}
}
// function inside the class for the circle
// to determine distance and what color.
interact () {
let d = dist (this.x, this.y, mouseX, mouseY);
if (d < this.r) {
this.col = 0;
}
}