scrimba
The Weekly Web Dev Challenge
The Weekly Web Dev Challenge: Logo Editor ๐Ÿ–Œ
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

The Weekly Web Dev Challenge: Logo Editor ๐Ÿ–Œ
AboutCommentsNotes
The Weekly Web Dev Challenge: Logo Editor ๐Ÿ–Œ
Expand for more info
index.js
run
preview
console
/*
DESCRIPTION:
In this challenge you are asked to change how the logo looks when you click
the three buttons. This is an excellent challenge for styling elements in
JavaScript, not CSS.

If the user clicks the first button, I want the text on the
logo to become black. If the user clicks the second button,
I want the logo background to become red. If the user clicks the third button,
I would like you to add a shadow to the logo.

event listeners, getElementById, operators

*/

// Write your code here ๐Ÿ‘‡


/*

DETAILED INSTRUCTIONS
1. pick out the neccesary elements from the HTML
2. use eventlisteners on the buttons to envoke functions
3. change the properties of the logo using JavaScript

STRETCH GOALS:
- If any of the buttons are clicked a second time, I want the change they
are responsible for to be reversed.
- Can you improve the overall design?

*/
Console
/index.html
-2:06