From 36ebf6f0b4a738b28c6e1f58d2841de09b68c277 Mon Sep 17 00:00:00 2001 From: Ryan Sobol Date: Fri, 11 Nov 2016 06:16:15 -0800 Subject: [PATCH] Improve the README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8fbb27d..558add5 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ As always, fork and clone this repo. ![Screenshot of the stop bulb lit up](screenshot.png) -#### Part 1 +## Part 1 Add JavaScript DOM event listeners to toggle the on/off state of three bulbs. @@ -14,26 +14,26 @@ Add JavaScript DOM event listeners to toggle the on/off state of three bulbs. **TIP**: All three bulbs can be on/off independently of one another. -##### Resources +#### Resources - [MDN - `Document.querySelector()`](https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelector) - [MDN - `EventTarget.addEventListener()`](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener) - [MDN - `click`](https://developer.mozilla.org/en-US/docs/Web/Events/click) - [MDN - `background-color`](https://developer.mozilla.org/en-US/docs/Web/CSS/background-color) -#### Part 2 +## Part 2 Add new event listeners to log the mouse state of each button. - When a user's mouse "enters" a button, log `"Entered button"` to the console. - When a user's mouse "leaves" a button, log `"Left button"` to the console. -##### Resources +#### Resources - [MDN - `mouseenter`](https://developer.mozilla.org/en-US/docs/Web/Events/mouseenter) - [MDN - `mouseleave`](https://developer.mozilla.org/en-US/docs/Web/Events/mouseleave) -#### Bonus +## Bonus Add **one** new event listener to log the state of each bulb.