From 68aa3ef83c27dbd30050fde69d361b9fdc2d6ba8 Mon Sep 17 00:00:00 2001 From: Lavrentiy Rubtsov Date: Sat, 23 Apr 2022 16:55:57 +0600 Subject: [PATCH] Update article.md --- 7-animation/2-css-animations/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7-animation/2-css-animations/article.md b/7-animation/2-css-animations/article.md index 8dd64f39..1b1b0ca0 100644 --- a/7-animation/2-css-animations/article.md +++ b/7-animation/2-css-animations/article.md @@ -210,7 +210,6 @@ Other names are shorthands for the following `cubic-bezier`: So we could use `ease-out` for our slowing down train: - ```css .train { left: 0; @@ -226,6 +225,7 @@ But it looks a bit differently. The control points on the curve can have any `y` coordinates: even negative or huge ones. Then the Bezier curve would also extend very low or high, making the animation go beyond its normal range. In the example below the animation code is: + ```css .train { left: 100px;