Keyframe Animations in Tailwind CSS
From the Tailwind CSS cheat sheet ยท Transitions & Animations ยท verified Jul 2026
Keyframe Animations
Built-in and custom keyframe animations.
html
<!-- Built-in animations -->
<div class="animate-spin">Spinning loader</div>
<div class="animate-pulse">Pulsing skeleton</div>
<div class="animate-bounce">Bouncing arrow</div>
<div class="animate-ping">Ping notification</div>๐ก animate-pulse is perfect for skeleton loading states โ just add it to gray boxes
โก animate-ping creates a radar-like ping effect โ great for notification badges
๐ Define custom animations in @theme with @keyframes in v4
๐ข Combine with conditionals: show animate-spin while loading, hide when done
animationskeyframesspinpulse