Open In App

Tailwind CSS Transition Timing Function

Last Updated : 29 Jul, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

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:


Next Article

Similar Reads