Let's create a new `open-close` component to animate with simple transitions.
@@ -95,7 +91,7 @@ Let's see how Angular's `state()` function works with the `style()` func
-In the `closed` state, shown below, the button has a height of 100 pixels, an opacity of 0.5, and a background color of green.
+In the `closed` state, shown below, the button has a height of 100 pixels, an opacity of 0.7, and a background color of blue.
@@ -117,7 +113,7 @@ The `timings` parameter takes a string defined in three parts.
>`animate ('duration delay easing')`
-The first part, `duration`, is required. The duration can be expressed in milliseconds as a simple number without quotes, or in seconds with quotes and a time specifier. For example, a duration of a tenth of a second can be expressed as follows:
+The first part, `duration`, is required. The duration can be expressed in milliseconds as a number without quotes, or in seconds with quotes and a time specifier. For example, a duration of a tenth of a second can be expressed as follows:
* As a plain number, in milliseconds: `100`
@@ -177,10 +173,6 @@ The `trigger()` function describes the property name to watch for changes. When
In this example, we'll name the trigger `openClose`, and attach it to the `button` element. The trigger describes the open and closed states, and the timings for the two transitions.
-
-
-
-
**Note:** Within each `trigger()` function call, an element can only be in one state at any given time. However, it's possible for multiple triggers to be active at once.
@@ -239,7 +231,7 @@ region="trigger">
### Summary
-You learned to add animation to a simple transition between two states, using `style()` and `state()` along with `animate()` for the timing.
+You learned to add animation to a transition between two states, using `style()` and `state()` along with `animate()` for the timing.
You can learn about more advanced features in Angular animations under the Animation section, beginning with advanced techniques in [transition and triggers](guide/transition-and-triggers).
diff --git a/aio/content/images/guide/animations/open-closed.png b/aio/content/images/guide/animations/open-closed.png
deleted file mode 100644
index 7f4aff97da..0000000000
Binary files a/aio/content/images/guide/animations/open-closed.png and /dev/null differ
diff --git a/aio/content/images/guide/animations/triggering-the-animation.png b/aio/content/images/guide/animations/triggering-the-animation.png
deleted file mode 100644
index cbaa7929e7..0000000000
Binary files a/aio/content/images/guide/animations/triggering-the-animation.png and /dev/null differ