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:

HTML
<!DOCTYPE html> 
<html>
<head> 
    <link href= 
"https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
        rel="stylesheet"> 
</head> 

<body class="text-center mx-4 space-y-2"> 
    <h1 class="text-green-600 text-5xl font-bold"> 
        GeeksforGeeks 
    </h1> 
    <b>Tailwind CSS Transition Timing Function Class</b> 
    <div class="bg-green-200 m-8 grid grid-flow-col gap-4 p-5"> 
        <button class="transition duration-700 ease-in 
                       bg-green-300 hover:bg-green-600 transform 
                       hover:-translate-y-1 hover:scale-110 
                       rounded-lg p-4 border border-green-900">
            Hover me for ease-in
        </button>
        <button class="transition duration-700 ease-out 
                       bg-green-300 hover:bg-green-600 transform 
                       hover:-translate-y-1 hover:scale-110 
                       rounded-lg p-4 border border-green-900">
            Hover me for ease-out
        </button>
        <button class="transition duration-700 ease-in-out 
                       bg-green-300 hover:bg-green-600 transform 
                       hover:-translate-y-1 hover:scale-110 
                       rounded-lg p-4 border border-green-900">
            Hover me for ease-in-out
        </button>
        <button class="transition duration-700 ease-linear 
                       bg-green-300 hover:bg-green-600 transform 
                       hover:-translate-y-1 hover:scale-110 
                       rounded-lg p-4 border border-green-900">
            Hover me for ease-linear
        </button>
    </div> 
</body> 
</html> 

Output:


Next Article

Similar Reads