Free Resource

Kairo Motion Library

60 production-ready CSS animation presets. Live previews in every card — click any animation to copy the CSS.

60 animations
Pure CSS keyframes
8 categories
Free for personal & commercial use
Usage — click any card to copy its CSS
/* 1. Paste the @keyframes block into your CSS */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 2. Apply it to any element */
.element {
  animation: fade-in-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
Replay
CSS copied to clipboard