@@ -239,7 +239,7 @@ The name of the starting class is the name of the event that is fired (like `ent
239239The active class name is the same as the starting class's but with an `-active` suffix.
240240This two-class CSS naming convention allows the developer to craft an animation, beginning to end.
241241
242- In our example above, elements are expanded from a height of **0** to **120 pixels** when they're added to the
242+ In our example above, elements are expanded from a height of **0** to **120 pixels** when they're added to the
243243list and are collapsed back down to **0 pixels** before being removed from the list.
244244There's also a nice fade-in and fade-out effect that occurs at the same time. All of this is handled
245245by the CSS transition declarations at the top of the example code above.
@@ -357,10 +357,10 @@ For more on CSS animations, see the
357357## Animating `ngClass` with JavaScript
358358
359359Let's add another animation to our application. Switching to our `phone-detail.html` page,
360- we see that we have a nice thumbnail swapper. By clicking on the thumbnails listed on the page,
360+ we see that we have a nice thumbnail swapper. By hovering over the thumbnails listed on the page,
361361the profile phone image changes. But how can we change this around to add animations?
362362
363- Let's think about it first. Basically, when you click on a thumbnail image, you're changing the
363+ Let's think about it first. Basically, when you hover over a thumbnail image, you're changing the
364364state of the profile image to reflect the newly selected thumbnail image.
365365The best way to specify state changes within HTML is to use classes.
366366Much like before, how we used a CSS class to specify an animation, this time the animation will
@@ -369,7 +369,7 @@ occur whenever the CSS class itself changes.
369369Whenever a new phone thumbnail is selected, the state changes and the `.active` CSS class is added
370370to the matching profile image and the animation plays.
371371
372- Let's get started and tweak our HTML code on the `phone-detail.html` page first. Notice that we
372+ Let's get started and tweak our HTML code on the `phone-detail.html` page first. Notice that we
373373have changed the way we display our large image:
374374
375375__`app/partials/phone-detail.html`.__
0 commit comments