You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ryan Sobol
2b226f0912
|
8 years ago | |
---|---|---|
.gitignore | 9 years ago | |
README.md | 8 years ago | |
index.css | 8 years ago | |
index.html | 8 years ago | |
index.js | 8 years ago | |
stoplight.gif | 8 years ago |
README.md
Stoplight Exercise
As always, fork and clone this repository.
Part 1
Add DOM event listeners and handlers to toggle the on/off state of three bulbs.
- When a user clicks on the "Stop" button, toggle the top bulb's color to
red
. - When a user clicks on the "Slow" button, toggle the middle bulb's color to
orange
. - When a user clicks on the "Go" button, toggle the bottom bulb's color to
green
.
TIP: All three bulbs can be on/off independently of one another.
Resources
- MDN -
Document.querySelector()
- MDN -
EventTarget.addEventListener()
- MDN -
click
- MDN -
background-color
Part 2
Add new DOM event listeners and handlers to log the mouse state of each button.
- When a user's mouse enters a button, log
"Entered <textContent> button"
to the console. - When a user's mouse leaves a button, log
"Left <textContent> button"
to the console.
TIP: Each event type will need a separate event listener.
Resources
Bonus
Add one new DOM event listener and one handler to log the state of each bulb.
- When a user clicks a button that just turned on, log
"<textContent> bulb on"
to the console. - When a user clicks a button that just turned off, log
"<textContent> bulb off"
to the console.
TIP: A click on only a button should cause a message to be logged to the console.