DEV Community

Sampson Ovuoba for Devwares

Posted on • Originally published at devwares.com on

Tailwind animation-How to create Tailwind CSS Animation

Tailwind CSS Animations

Web Animations make your websites come alive, when done properly they capture users' attention and make for an immaculate user experience.

Web Animations have become the norm recently as developers are constantly making use of animations on their projects to make their applications interactive.

This has made many companies and websites adopt this technology on their website and applications.

When you click a button or open a website, and there are movements on the site, you are looking at an amination.

In the present day, anything from a cartoon to Japanese anime is considered animation. With simple CSS and JavaScript, you can create amazing animations.

However, Creating animations in Tailwind has proved easier to do and from scratch. This is because we have access to styling out of the box.

In this tailwind CSS tutorial, we are going to look at

  • What is Animation
  • How to create TailwindCSS Animation.
  • How to use customized Tailwind animation.

Table of Content

  • What is Animation
  • How do you animate with tailwind CSS
  • Prerequisite
  • Tailwind animation: Building our Loader
  • Example Tailwind Animations
  • How do I add Custom Animation to Tailwind?
  • Best Practices for Tailwind CSS Animation
  • Conclusion

What is Animation

Animations are used to make elements move from one position to another over some time on your website.
Aminations are often, at times, triggered by events such as scrolling, and loading of webpages or applications.
In this Tailwind CSS tutorial, we will look at how to use the tailwind CSS animation.

How do you animate with tailwind CSS

Adding animation with Tailwind is as easy as simply appending the class animate- to the element you wish to animate.
Tailwind CSS also offers some default animations such as

  • Animate-spin
  • Animate-bounce
  • Animate-ping
  • Animate-pulse

As their name implies, we will use all of this default utility class animation to build a website loader.

At the end of the tailwind CSS tutorial, our project will look like the image below.

Tailwind CSS Animations

Prerequisite

To make the most of this Tailwind CSS tutorial, you need the following

  • Basic Knowledge of HTML and CSS animations.
  • Tailwind CSS installed in your project. To figure out how to do this, you can check out our article on installing Tailwind CSShere.

Tailwind animation: Building our Loader

Before we jump right in, you must link your Tailwind CSS stylesheet to your HTML. Just like the code below

<link rel="stylesheet" href="styles.css">

Enter fullscreen mode Exit fullscreen mode

Your project's HTML head should be like this

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="styles.css">
    <title>Website loader</title>
</head>

Enter fullscreen mode Exit fullscreen mode

We can go ahead to build our loader. To make our loader as rich as possible, we will create four different kinds of animations with four different Tailwind animation classes.

<body class="flex justify-center items-center bg-white-900 h-screen">
  <div class="bg-white flex space-x-2 p-5 justify-center items-center">
    <div class="m-auto ml-10 h-20 w-20 bg-blue-900 p-2 animate-spin"></div>
    <div class="m-auto ml-10 h-20 w-20 bg-purple-500 p-2 animate-ping"></div>
    <div class="m-auto ml-10 h-20 w-20 bg-green-600 p-2  animate-bounce"></div>
    <div class="m-auto ml-10 h-20 w-20 bg-blue-500 p-2 animate-pulse"></div>
  </div>
</body>
Enter fullscreen mode Exit fullscreen mode

We use class names for our divs to affect different properties of our div element. These class names are:

  • m-auto, centers your div horizontally. Offers the same functionality as the native CSS margin: auto.
  • ml-10, gives your div a margin-left of 10px. Offers the same functionality as the native CSS margin-left: 10px .
  • h-20, defines the height of your div. Offers the same functionality as the native CSS height: 20px .
  • w-20, defines the width of your div. Offers the same functionality as the native CSS width: 20px .

The Tailwind animation classes we use to define the animation we want in our project are :

  • animate-spin, gives your element a linear spin animation.
  • animate-ping, makes the element scale and fade out.
  • animate-bounce, gives your element the illusion of bouncing.
  • animate-pulse, this makes your element gently fade in and out.

Our animated loader should look like the image below.

Tailwind CSS Animations

Example Tailwind Animations

Here are a few examples of Tailwind CSS animations that you can use as inspiration for your projects:

  • Fade-in animation: Apply the animate-fade-in class to smoothly fade in an element when it becomes visible on the screen.

  • Slide-up animation: Use the animate-slide-up class to slide an element upwards into view with a subtle animation effect.

  • Bounce animation: Apply the animate-bounce class to create a bouncing effect on an element, adding a playful touch to your design.

  • Rotate animation: Use the animate-rotate class to apply a rotating effect to an element, making it visually engaging.

How do I add Custom Animation to Tailwind?

Tailwind animations are not limited to only the animations mentioned above, you have the freedom to create more complex, and more interesting Tailwind animation plugins. You can even increase your tailwind animation speed. Asides from the div element we could animate other HTML elements, an example would be to animate the button element to make them more responsive.

With the Tailwind CSS animation, you can customize your animation to better suit your needs. You can easily customize your Tailwind animation by visiting the configuration file.

In this configuration file, you can add, remove, and change animations in the tailwind.config.js file. We define the animation behavior in the animation section of the module.exports object.

module.exports = {
  theme: {
    extend: {
      animation: {
        'spin-slow': 'spin 3s linear infinite',
      },
    },
  },
};
Enter fullscreen mode Exit fullscreen mode

You can also use @keyframes to define animations not already created in native CSS.

// tailwind.config.js

module.exports = {
  theme: {
    extend: {
      keyframes: {
        wiggle: {
          '0%, 100%': { transform: 'rotate(-3deg)' },
          '50%': { transform: 'rotate(3deg)' },
        },
      },
    },
  },
};
Enter fullscreen mode Exit fullscreen mode

With the @keyframes we define the Tailwind animation for when it is 0% and 100% complete, we want to rotate the element 3 degrees left, and when it is 50% complete we want to rotate the element 3 degrees right.

After creating the animation we can reference the wiggle animation in the animation section of our module.exports object. You can check out the animation documentation.

module.exports = {
  theme: {
    extend: {
      animation: {
        wiggle: 'wiggle 1s ease-in-out infinite',
      },
    },
  },
};
Enter fullscreen mode Exit fullscreen mode

Once you have added your custom Tailwind animation, remember to run npm run build to build it to your CSS.

Best Practices for Tailwind CSS Animation

When using Tailwind animation, keep the following best practices in mind:

  1. Use animations sparingly and purposefully to avoid overwhelming the user.
  2. Consider the context and purpose of the animation,
    ensuring it aligns with your user's context and enhances the overall user experience.

  3. Optimize performance by using hardware-accelerated properties for smoother animations.

  4. Test your animations on different devices and browsers to ensure consistent behavior.

  5. Leverage the power of responsive design by creating animations that adapt to various screen sizes.

Conclusion

Tailwind CSS provides a seamless and efficient way to create stunning animations for your website. By following the steps outlined in this article, you can easily integrate Tailwind CSS animation into your projects and enhance the user experience. Remember to use animations thoughtfully, considering the context and purpose of each animation. With Tailwind CSS's extensive animation utilities and customization options, you have the flexibility to create unique and captivating effects that will impress your website visitors.

Resources

Top comments (0)