2016-11-11 06:43:47 -08:00
2015-11-03 11:18:16 -07:00
2016-11-11 05:51:17 -08:00
2016-11-11 05:51:17 -08:00
2016-11-11 06:15:22 -08:00
2016-11-11 06:43:47 -08:00
2016-11-11 06:34:56 -08:00

Stoplight Exercise

As always, fork and clone this repository.

Part 1

Add DOM event listeners to toggle the on/off state of three bulbs.

  • When a user clicks on the "Stop" button, the top bulb should turn red.
  • When a user clicks on the "Slow" button, the middle bulb should turn orange.
  • When a user clicks on the "Go" button, the bottom bulb should turn green.

TIP: All three bulbs can be on/off independently of one another.

Resources

Part 2

Add new DOM event listeners 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 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.

Resources

Description
Practice listening for and handling JavaScript DOM Events
Readme 1.9 MiB
Languages
JavaScript 39.7%
CSS 31.7%
HTML 28.6%