From 2f788f66ec562f82464be680682364edbfc5f511 Mon Sep 17 00:00:00 2001 From: Vigneshkumar Chinnachamy Date: Sun, 29 Nov 2020 00:46:27 +0530 Subject: [PATCH] minor typo fix in `animation-play-state` typo fix: "but the on the first keyframe" => "but on the first keyframe" --- property/animation-play-state/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/property/animation-play-state/index.html b/property/animation-play-state/index.html index a200b1a1..a1b6fcfb 100644 --- a/property/animation-play-state/index.html +++ b/property/animation-play-state/index.html @@ -65,7 +65,7 @@

The animation is set paused at the first keyframe.

This is different than having either no animation-duration or animation-name at all. If the animation is paused, the style applied is that of the first keyframe, and not the default style.

-

In this example, the square is visible by default, but the on the first keyframe of fadeAndMove, the opacity is set to 0. When paused, the animation will be "stuck" on this first keyframe, and will thus be invisible.

+

In this example, the square is visible by default, but on the first keyframe of fadeAndMove, the opacity is set to 0. When paused, the animation will be "stuck" on this first keyframe, and will thus be invisible.

@keyframes fadeAndMove {
   from {
     opacity: 0;