Skip to content

Commit

Permalink
fix grammar in pop-up instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
dougc85 committed Sep 16, 2022
1 parent 3e3fd4e commit 39c4e86
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions animation/02-pop-up/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

In this exercise we have set up a simple pop-up dialog for you. It already works! Load up index.html and give it a shot!

You don't need to worry about the actual functionality here, we've just written a little javascript that adds and removes a `.show` class to the popup and the backdrop. Your task then is to make it _move_, as in the desired-outcome image below.
You don't need to worry about the actual functionality here; we've just written a little javascript that adds and removes a `.show` class to the popup and the backdrop. Your task then is to make it _move_, as in the desired-outcome image below.

### Hints
- "modal" is another word for 'pop-up'
- In the code we've provided, the popup is sitting in it's final position, so you'll need to change it's initial position, and then use a transition to move it back to the center.
- In the code we've provided, the popup is sitting in its final position. You'll need to change its initial position and then use a transition to move it back to the center.
- You might want to change the initial opacity from 0% to something like 20% while you're working on it, so you can easily see where it is coming from before you click the button.
- Don't overthink this one... it might seem complicated, but it requires just a few lines of code.

Expand All @@ -16,5 +16,5 @@ You don't need to worry about the actual functionality here, we've just written

### Self Check

- The pop-up slides down into position when you click the open button, and slides back up when you click 'close modal'
- The opacity fades smoothly in and out when toggling the modal.
- The pop-up slides down into position when you click the open button and slides back up when you click 'close modal'
- The opacity fades smoothly in and out when toggling the modal

0 comments on commit 39c4e86

Please sign in to comment.