diff --git a/experiments/Levi/Graphics/canvas_animated.html b/experiments/Levi/Graphics/canvas_animated.html index 965fe9f..2d1ec06 100644 --- a/experiments/Levi/Graphics/canvas_animated.html +++ b/experiments/Levi/Graphics/canvas_animated.html @@ -44,7 +44,7 @@
- Click to let shapes appear! Drag them wherever you want! Click on them to change their color! Right click anywhere on the canvas to delete every shape! + Click to let shapes appear! Drag them wherever you want! Click on them to change their color! Right click anywhere on the canvas to delete every shape!
The button might even make them move...
@@ -58,7 +58,7 @@ let isAnimating = false; // Track whether animation mode is enabled const shapes = []; // Array to store shapes and their properties - // Generate a random color in hexadecimal format + // Generate a random color hex function randomColor() { return `#${Math.floor(Math.random() * 16777215).toString(16)}`; }