This repository holds my current version of the EProject: Etch-a-Sketch, which is part of the Javascript Basicscourse of The Odin Project.
The intent of this exercise was to start off with an almost barebone HTML file and only use Javascript DOM manipulation to build a reactive surface on which a user can "sketch" on when hovering over it.
Still to be done:
- Rather than squares being the same color throughout the grid, randomize the squares’ RGB values with each interaction.
- Implement a progressive darkening effect where each interaction darkens the square by 10%. The objective is to achieve a completely black square only ten interactions. (using CSS's
opacity
)