From 16b9bdaca93587a8f562fc09e0cb8d8916c621e9 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Mon, 28 Jun 2021 23:58:26 +0300 Subject: [PATCH] minor fixes --- 7-animation/2-css-animations/article.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/7-animation/2-css-animations/article.md b/7-animation/2-css-animations/article.md index c9cebf30..55a5eeaf 100644 --- a/7-animation/2-css-animations/article.md +++ b/7-animation/2-css-animations/article.md @@ -143,8 +143,6 @@ The timing function can be set as a [Bezier curve](/bezier-curve) with 4 control 2. Last control point: `(1,1)`. 3. For intermediate points, the values of `x` must be in the interval `0..1`, `y` can be anything. -If you're not familiar with Bezier curves yet, you might want to check the [Bezier curve](/bezier-curve) chapter of the tutorial. - The syntax for a Bezier curve in CSS: `cubic-bezier(x2, y2, x3, y3)`. Here we need to specify only 2nd and 3rd control points, because the 1st one is fixed to `(0,0)` and the 4th one is `(1,1)`. The timing function describes how fast the animation process goes.