
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.
animatecss-tailwind
Advanced tools
This plugin helps you use [animateCss](https://animate.style/) animation in tailwind.
This plugin helps you use animateCss animation in tailwind.
First of all add the plugin to the "tailwind.config.js" file :
// tailwind.config.js
module.exports = {
content: ['...'],
theme: {
extend: {},
},
plugins: [require('animatecss-tailwind')],
};
<div class="animate-animated animate-zoomInDown"></div>
animation delays are inspired by tailwind-animation-delay
<div class="animate-ping animation-delay-1"></div>
<div class="animate-ping animation-delay-2"></div>
<div class="animate-ping animation-delay-3"></div>
<div class="animate-ping animation-delay-4"></div>
<div class="animate-ping animation-delay-5"></div>
<div class="animate-ping animation-delay-6"></div>
<div class="animate-ping animation-delay-7"></div>
<div class="animate-ping animation-delay-8"></div>
<div class="animate-ping animation-delay-9"></div>
<div class="animate-ping animation-delay-10"></div>
These are the allowed values by default :
{
1: "250",
2: "500",
3: "750",
4: "1000",
5: "1250",
6: "1500",
7: "1750",
8: "2000",
9: "2250",
10: "2500"
}
But you can still use your own values by changing the "animationDelay" property :
// tailwind.config.js
module.exports = {
content: ['...'],
theme: {
extend: {},
animationDelay: {
1: '1000',
2: '2000',
3: '3000',
},
},
plugins: [require('animatecss-tailwind')],
};
FAQs
This plugin helps you use [animateCss](https://animate.style/) animation in tailwind.
We found that animatecss-tailwind 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.