Improve the README

This commit is contained in:
Ryan Sobol 2016-11-11 06:16:49 -08:00
parent 36ebf6f0b4
commit 25674b5ce6

View File

@ -6,7 +6,7 @@ As always, fork and clone this repo.
## Part 1 ## Part 1
Add JavaScript DOM event listeners to toggle the on/off state of three bulbs. 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 "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 "Slow" button, the middle bulb should turn `orange`.
@ -23,7 +23,7 @@ Add JavaScript DOM event listeners to toggle the on/off state of three bulbs.
## Part 2 ## Part 2
Add new event listeners to log the mouse state of each button. 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 "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. - When a user's mouse "leaves" a button, log `"Left <textContent> button"` to the console.
@ -35,7 +35,7 @@ Add new event listeners to log the mouse state of each button.
## Bonus ## Bonus
Add **one** new event listener to log the state of each bulb. 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 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. - When a user clicks a button that just turned off, log`"<textContent> bulb off"` to the console.