
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
tailwindcss-plugin-animation-delay
Advanced tools
Tailwind CSS plugin, add animation-delay CSS property
animation-delay pluginTailwind CSS plugin, add animation-delay CSS property.
Install the plugin from npm:
# Using npm
npm install tailwindcss-plugin-animation-delay
# Using Yarn
yarn add tailwindcss-plugin-animation-delay
# Using pnpm
pnpm install tailwindcss-plugin-animation-delay
Then add the plugin to your tailwind.config.js file:
// tailwind.config.js
module.exports = {
theme: {
// ...
},
plugins: [
require("tailwindcss-plugin-animation-delay"),
// ...
],
};
animation-delay-{n} or -animation-delay-{n} or animation-delay-[arbitrary_values] 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>
| Class | Properties |
|---|---|
| animation-delay-none | animation-delay: 0s; |
| animation-delay-25 | animation-delay: 25ms; |
| animation-delay-50 | animation-delay: 50ms; |
| animation-delay-75 | animation-delay: 75ms; |
| animation-delay-100 | animation-delay: 100ms; |
| animation-delay-150 | animation-delay: 150ms; |
| animation-delay-200 | animation-delay: 200ms; |
| animation-delay-300 | animation-delay: 300ms; |
| animation-delay-400 | animation-delay: 400ms; |
| animation-delay-500 | animation-delay: 500ms; |
| animation-delay-600 | animation-delay: 600ms; |
| animation-delay-700 | animation-delay: 700ms; |
| animation-delay-800 | animation-delay: 800ms; |
| animation-delay-900 | animation-delay: 900ms; |
| animation-delay-1000 | animation-delay: 1000ms; |
| animation-delay-1100 | animation-delay: 1100ms; |
| animation-delay-1200 | animation-delay: 1200ms; |
| animation-delay-1300 | animation-delay: 1300ms; |
| animation-delay-1400 | animation-delay: 1400ms; |
| animation-delay-1500 | animation-delay: 1500ms; |
| animation-delay-2000 | animation-delay: 2000ms; |
| animation-delay-3000 | animation-delay: 3000ms; |
| animation-delay-4000 | animation-delay: 4000ms; |
| animation-delay-5000 | animation-delay: 5000ms; |
| animation-delay-6000 | animation-delay: 6000ms; |
| animation-delay-7000 | animation-delay: 7000ms; |
| animation-delay-8000 | animation-delay: 8000ms; |
| animation-delay-9000 | animation-delay: 9000ms; |
| Class | Properties |
|---|---|
| -animation-delay-25 | animation-delay: -25ms; |
| -animation-delay-50 | animation-delay: -50ms; |
| -animation-delay-75 | animation-delay: -75ms; |
| -animation-delay-100 | animation-delay: -100ms; |
| -animation-delay-150 | animation-delay: -150ms; |
| -animation-delay-200 | animation-delay: -200ms; |
| -animation-delay-300 | animation-delay: -300ms; |
| -animation-delay-400 | animation-delay: -400ms; |
| -animation-delay-500 | animation-delay: -500ms; |
| -animation-delay-600 | animation-delay: -600ms; |
| -animation-delay-700 | animation-delay: -700ms; |
| -animation-delay-800 | animation-delay: -800ms; |
| -animation-delay-900 | animation-delay: -900ms; |
| -animation-delay-1000 | animation-delay: -1000ms; |
| -animation-delay-1100 | animation-delay: -1100ms; |
| -animation-delay-1200 | animation-delay: -1200ms; |
| -animation-delay-1300 | animation-delay: -1300ms; |
| -animation-delay-1400 | animation-delay: -1400ms; |
| -animation-delay-1500 | animation-delay: -1500ms; |
| -animation-delay-2000 | animation-delay: -2000ms; |
| -animation-delay-3000 | animation-delay: -3000ms; |
| -animation-delay-4000 | animation-delay: -4000ms; |
| -animation-delay-5000 | animation-delay: -5000ms; |
| -animation-delay-6000 | animation-delay: -6000ms; |
| -animation-delay-7000 | animation-delay: -7000ms; |
| -animation-delay-8000 | animation-delay: -8000ms; |
| -animation-delay-9000 | animation-delay: -9000ms; |
<svg class="animate-bounce animation-delay-[10s] w-6 h-6 ...">
<!-- ... -->
</svg>
You can configure which values and variants are generated by this plugin under the animationDelay key in your tailwind.config.js file:
// tailwind.config.js
module.exports = {
theme: {
animationDelay: {
100: "100ms",
200: "200ms",
300: "300ms",
400: "400ms",
},
},
variants: {
animationDelay: ["responsive", "hover"],
},
};
FAQs
Tailwind CSS plugin, add animation-delay CSS property
The npm package tailwindcss-plugin-animation-delay receives a total of 0 weekly downloads. As such, tailwindcss-plugin-animation-delay popularity was classified as not popular.
We found that tailwindcss-plugin-animation-delay demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.