DEV Community

Alex Chen
Alex Chen

Posted on

CSS Animations & Transitions: A Visual Guide (2026)

CSS Animations & Transitions: A Visual Guide (2026)

CSS animations are the secret sauce that makes interfaces feel alive. No JavaScript required — pure CSS power.

Transitions: Smooth State Changes

/* The basics: property + duration */
.button {
  background-color: #3b82f6;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;

  transition: background-color 0.3s ease,
              transform 0.2s ease,
              box-shadow 0.3s ease;
}

.button:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Timing functions:
   linear    — Constant speed (robotic)
   ease      — Slow start, fast middle, slow end (default, natural)
   ease-in   — Slow start (good for entering)
   ease-out  — Slow end (good for leaving)
   ease-in-out — Both (good for full cycles)
   cubic-bezier() — Custom curve for precise control
*/

/* Custom easing for a snappy feel */
.snappy-button {
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Transition all vs specific properties */
.card { transition: all 0.3s ease; }        // Convenient but less performant
.card { transition: opacity 0.3s ease, transform 0.3s ease; } /* Better */

/* Delay transitions for staggered effects */
.menu:hover .menu-item:nth-child(1) { transition-delay: 0ms; }
.menu:hover .menu-item:nth-child(2) { transition-delay: 50ms; }
.menu:hover .menu-item:nth-child(3) { transition-delay: 100ms; }

.menu:hover .menu-item {
  opacity: 1;
  transform: translateX(0);
}
Enter fullscreen mode Exit fullscreen mode

Keyframe Animations: Full Control

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes slideInFromLeft {
  0%   { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
  40%, 43%                 { transform: translateY(-30px); }
  70%                      { transform: translateY(-15px); }
  90%                      { transform: translateY(-4px); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes typewriter {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Apply animations */
.hero-title { animation: fadeInUp 0.8s ease-out forwards; }
.loading-spinner {
  width: 40px; height: 40px;
  border: 4px solid #e5e7eb;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.notification-badge { animation: pulse 2s ease-in-out infinite; }
.gradient-text {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
}
.typewriter {
  display: inline-block; overflow: hidden; white-space: nowrap;
  border-right: 3px solid #3b82f6;
  animation: typewriter 3s steps(40) 1s forwards,
             blink 0.75s step-end infinite;
}
Enter fullscreen mode Exit fullscreen mode

Practical UI Patterns

/* Loading Skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Hover Card Effect */
.hover-card {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.1));
  opacity: 0; transition: opacity 0.3s ease; z-index: -1;
}
.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.hover-card:hover::before { opacity: 1; }

/* Accordion/Collapse */
.accordion-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion.open .accordion-content {
  max-height: 500px; padding: 16px 0;
}

/* Progress bar */
.progress-bar {
  width: 0%; height: 8px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-bar.loading { animation: progressIndeterminate 1.5s ease-in-out infinite; }
@keyframes progressIndeterminate {
  0% { width: 0%; margin-left: 0%; }
  50% { width: 60%; margin-left: 20%; }
  100% { width: 100%; margin-left: 100%; }
}

/* Ripple effect on click */
.ripple-btn { position: relative; overflow: hidden; }
.ripple-btn::after {
  content: ''; position: absolute; width: 100%; height: 100%;
  top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0);
  border-radius: 50%; background: rgba(255,255,255,0.3);
  opacity: 0; pointer-events: none;
}
.ripple-btn:active::after { animation: rippleEffect 0.6s ease-out; }
@keyframes rippleEffect {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}
Enter fullscreen mode Exit fullscreen mode

Performance Tips

/* Only animate these for 60fps:
✅ GPU-accelerated (composited): transform, opacity
❌ CPU-intensive (triggers layout/paint): width, height, top, left, margin, padding, font-size, color */

.gpu-accelerated { will-change: transform, opacity; } /* Hints browser */
/* But don't overuse will-change! Too many layers = too much memory */

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
Enter fullscreen mode Exit fullscreen mode

What's your favorite CSS animation trick?

Follow @armorbreak for more practical developer guides.

Top comments (0)