From 54688eb9ceb30129acdf0fb7ea5a198640e4c4ab Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sat, 26 Jun 2021 20:58:21 +0300 Subject: [PATCH] minor fixes --- 7-animation/2-css-animations/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/7-animation/2-css-animations/article.md b/7-animation/2-css-animations/article.md index 25dd4fdf..bf3b6eb0 100644 --- a/7-animation/2-css-animations/article.md +++ b/7-animation/2-css-animations/article.md @@ -260,7 +260,7 @@ But how do we make a Bezier curve for a specific task? There are many tools. For ### Steps -The timing function `steps(number of steps[, start/end])` allows splitting an animation into steps. +The timing function `steps(number of steps[, start/end])` allows splitting an transition into multiple steps. Let's see that in an example with digits. @@ -301,7 +301,7 @@ The process is progressing like this: The alternative value `end` would mean that the change should be applied not in the beginning, but at the end of each second. -So the process would go like this: +So the process for `steps(9, end)` would go like this: - `0s` -- `0` - `1s` -- `-10%` (first change at the end of the 1st second)