Etch A Sketchunblocked Evrything



  1. Etch A Sketchunblocked Everything Online
  2. Etch A Sketchunblocked Everything Free
SketchunblockedEtch a sketchunblocked everything online

Etch a Sketch Miniature DOODLE Red Yellow Draw Slide Erase Travel Drawing Toy. 1.5 out of 5 stars (2) Total Ratings 2, $5.37 New. Ohio Art Pocket Etch a Sketch Yellow Toy Kids Children Purple 516 4jkhzy2. 5 out of 5 stars (4) Total Ratings 4, $10.98 New. With Etch A Sketch, art comes to life! For over 50 years, #EtchASketch has been delighting children and adults from around the world! 🌎 With its iconic red frame, white knobs and classic shake.

Etch A Sketchunblocked Everything Online

SketchunblockedEtch A Sketchunblocked Evrything

Etch A Sketchunblocked Everything Free

  1. Follow the instructions atop Odin’s Google Homepage project to setup a git repository for this project.
  2. Create a webpage with a 16x16 grid of square divs
    1. Create the divs using JavaScript… don’t try making them by hand with copy and pasting in your html file!
    2. Best to put your grid squares inside another “container” div (that one can go directly in your html)
    3. There are several different ways to make the divs appear as a grid (versus just one on each line) feel free to use any or play with each of them:
      1. float/clear
      2. inline-block
      3. flexbox
      4. CSS Grid
    4. Be careful with borders and margins, they can adjust the size of the squares!
    5. “OMG, Why isn’t my grid being created???”
      1. Did you link your CSS stylesheet?
      2. Open your browser’s developer tools
      3. Check if there are any errors in the JavaScript console
      4. Check your “elements” pane to see if the elements have actually shown up but are somehow hidden.
      5. Go willy-nilly and add console.log statements in your JavaScript to see if it’s actually being loaded.
  3. Set up a “hover” effect so that the grid divs change color when your mouse passes over them, leaving a (pixelated) trail through your grid like a pen would.
    1. Hint: “hovering” is what happens when your mouse enters a div and ends when your mouse leaves it.. you can set up event listeners for either of those events as a starting point.
    2. There are multiple ways to change the color of the divs, including:
      1. adding a new class to the div
      2. changing the div’s background color using JavaScript.
  4. Add a button to the top of the screen which will clear the current grid and send the user a popup asking for how many squares per side to make the new grid. Once entered the new grid should be generated in the same total space as before (e.g. 960px wide) and now you’ve got a new sketch pad. Tip: Set the limit for the user input to a maximum of 100. A larger number of squares results in more computer resources being used, resulting in possible delays, freezing, or crashing that we want to prevent.
    1. Research button tags in HTML and how you can make a JavaScript function run when one is clicked.
    2. Also check out prompts
    3. You should be able to enter 64 and have a brand new 64x64 grid pop up without changing the total amount of pixels used
  5. (Optional): Instead of just changing the color of your grid from black to white (for example) have each pass through it with the mouse change to a completely random RGB value. Then try having each pass just add another 10% of black to it so that only after 10 passes is the square completely black.
  6. Push your project to GitHub!