You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

tailwindcss-animation-delay

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tailwindcss-animation-delay

Tailwind CSS plugin, add animation-delay CSS property.

2.0.2
latest
Source
npmnpm
Version published
Weekly downloads
25K
32.98%
Maintainers
0
Weekly downloads
 
Created
Source

tailwindcss-animation-delay

Tailwind CSS plugin, add animation-delay CSS property.

[!NOTE] With Tailwind CSS v4, you can now define custom properties directly in your CSS file without using any plugins. If you’re working with v4.0 or later, please include the contents of tailwindcss-v4.css.

Installation

Install the plugin from npm:

# Using npm
npm install tailwindcss-animation-delay

# Using Yarn
yarn add tailwindcss-animation-delay

Then add the plugin to your tailwind.config.js file:

/** @type {import('tailwindcss').Config} */
module.exports = {
  theme: {
    // ...
  },
  plugins: [
    require("tailwindcss-animation-delay"),
    // ...
  ],
}

Usage

animation-delay-{n} class to specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation.

<svg class="animate-bounce animation-delay-300 w-6 h-6 ...">
  <!-- ... -->
</svg>

Negative values

To use a negative animation-delay value, prefix the class name with a dash to convert it to a negative value.

<svg class="animate-bounce -animation-delay-600 w-6 h-6 ...">
  <!-- ... -->
</svg>
ClassProperties
animation-delay-noneanimation-delay: 0s;
animation-delay-75animation-delay: 75ms;
animation-delay-100animation-delay: 100ms;
animation-delay-150animation-delay: 150ms;
animation-delay-200animation-delay: 200ms;
animation-delay-300animation-delay: 300ms;
animation-delay-400animation-delay: 400ms;
animation-delay-500animation-delay: 500ms;
animation-delay-600animation-delay: 600ms;
animation-delay-700animation-delay: 700ms;
animation-delay-800animation-delay: 800ms;
animation-delay-900animation-delay: 900ms;
animation-delay-1000animation-delay: 1000ms;
animation-delay-1100animation-delay: 1100ms;
animation-delay-1200animation-delay: 1200ms;
animation-delay-1300animation-delay: 1300ms;
animation-delay-1400animation-delay: 1400ms;
animation-delay-1500animation-delay: 1500ms;
animation-delay-2000animation-delay: 2000ms;
animation-delay-3000animation-delay: 3000ms;
animation-delay-4000animation-delay: 4000ms;
animation-delay-5000animation-delay: 5000ms;
animation-delay-6000animation-delay: 6000ms;
animation-delay-7000animation-delay: 7000ms;
animation-delay-8000animation-delay: 8000ms;
animation-delay-9000animation-delay: 9000ms;
-animation-delay-75animation-delay: -75ms;
-animation-delay-100animation-delay: -100ms;
-animation-delay-150animation-delay: -150ms;
-animation-delay-200animation-delay: -200ms;
-animation-delay-300animation-delay: -300ms;
-animation-delay-400animation-delay: -400ms;
-animation-delay-500animation-delay: -500ms;
-animation-delay-600animation-delay: -600ms;
-animation-delay-700animation-delay: -700ms;
-animation-delay-800animation-delay: -800ms;
-animation-delay-900animation-delay: -900ms;
-animation-delay-1000animation-delay: -1000ms;
-animation-delay-1100animation-delay: -1100ms;
-animation-delay-1200animation-delay: -1200ms;
-animation-delay-1300animation-delay: -1300ms;
-animation-delay-1400animation-delay: -1400ms;
-animation-delay-1500animation-delay: -1500ms;
-animation-delay-2000animation-delay: -2000ms;
-animation-delay-3000animation-delay: -3000ms;
-animation-delay-4000animation-delay: -4000ms;
-animation-delay-5000animation-delay: -5000ms;
-animation-delay-6000animation-delay: -6000ms;
-animation-delay-7000animation-delay: -7000ms;
-animation-delay-8000animation-delay: -8000ms;
-animation-delay-9000animation-delay: -9000ms;

Configuration

You can configure which values and variants are generated by this plugin under the animationDelay key in your tailwind.config.js file:

/** @type {import('tailwindcss').Config} */
module.exports = {
  theme: {
    animationDelay: {
      100: "100ms",
      200: "200ms",
      300: "300ms",
      400: "400ms",
      "-3000": "-3000ms",
      "-7000": "-7000ms",
    },
  },
  variants: {
    animationDelay: ["focus"],
  },
}

Extending the default theme

If you’d like to preserve the default values for a theme option but also add new values, add your extensions under the theme.extend key in your configuration file.

/** @type {import('tailwindcss').Config} */
module.exports = {
  theme: {
    extend: {
      animationDelay: {
        120: "120ms",
        250: "250ms",
        350: "350ms",
        450: "450ms",
        "-3500": "-3500ms",
        "-7500": "-7500ms",
      },
    },
  },
}

Keywords

tailwindcss

FAQs

Package last updated on 31 Jan 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts