CSS3 Animation
# CSS3 Animation
You can use F12 developer tools to inspect elements and styles, or open CodePen to edit the code online.
# Bezier Curve cubic-bezier(x1,y1,x2,y2)
By adjusting the Bezier curve, you can create various animation effects, such as bounce effects. The X-axis range is 0~1; the Y-axis range is not strictly defined, but should not be too large. For example: linear, i.e., cubic-bezier(0,0,1,1)
Bezier curve online tool: https://cubic-bezier.com/#.17,.67,.83,.67 (opens new window)
Reference: https://www.w3school.com.cn/css3/index.asp (opens new window)
Edit (opens new window)
Last Updated: 2026/03/21, 12:14:36