VOOZH about

URL: https://www.geeksforgeeks.org/css/tailwind-css-transition-timing-function/

⇱ Tailwind CSS Transition Timing Function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Tailwind CSS Transition Timing Function

Last Updated : 23 Jul, 2025

This class accepts lots of value in tailwind CSS in which all the properties are covered in class form. The transition timing function class is used to specify the time an animation uses to change from one set of CSS transitions to another. In CSS, we have done that by using the CSS transition-timing-function.

Transition timing function classes:

  • ease-linear: In this, the animation has the same speed from start to end.
  • ease-in: This is similar to easing where the end of the animation is fast.
  • ease-out: This is similar to easing where the start of the animation is fast.
  • ease-in-out: This sets the class to its default value.

Syntax:

<element class="ease-{timing}">...</element>

Example:

Output:

Comment