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: which properties, how long, timing function */
  transition: background-color 0.3s ease,
              transform 0.2s ease,
              box-shadow 0.3s ease;
}

.button:hover {
  background-color: #2563eb;       /* Color fades over 0.3s */
  transform: translateY(-2px);      /* Lifts up over 0.2s */
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4); /* Shadow appears over 0.3s */
}

/* Timing functions control the "feel" of animation:
   linear    — Constant speed (feels 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);
}
/* This overshoots slightly then settles — feels responsive! */

/* Transition all properties (convenient but less performant) */
.card {
  transition: all 0.3s ease; /* Transitions ANY changed property */
}
/* Better: specify only what you need (better performance) */
.card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Delay transitions for staggered effects */
.menu-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.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:nth-child(4) { transition-delay: 150ms; }

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

Keyframe Animations: Full Control

/* Define keyframes first (the animation timeline) */
@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 to elements */
.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;
}

/* Animation shorthand: name duration timing-function delay iteration-count direction fill-mode */
.slide-in-menu {
  animation: slideInFromLeft 0.5s ease-out forwards;
}

.bouncing-ball {
  animation: bounce 1s ease 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 effect */
.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; }
}

.skeleton-text { height: 16px; margin-bottom: 8px; }
.skeleton-text.short { width: 60%; }
.skeleton-avatar { width: 48px; height: 48px; border-radius: 50%; }

/* === 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 smooth open */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion.open .accordion-content {
  max-height: 500px; /* Must be larger than actual content */
  padding: 16px 0;
}

/* === Progress bar animation */
.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%; }
}

/* === Number counter animation (with CSS custom properties) */
.counter {
  --count: 0;
  font-variant-numeric: tabular-nums;
}

.counter.animated {
  animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
  from { --count: 0; }
  to { --count: var(--target); }
}
/* Note: Full number counting requires @property or JS. Use CSS for visual effect only. */

/* === 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 properties for 60fps performance:

✅ GPU-accelerated (composited, no repaint):
   transform: translate/rotate/scale
   opacity

❌ CPU-intensive (triggers layout/paint):
   width, height, top, left, right, bottom
   margin, padding
   font-size, color, background-color
   border-width, border-radius

Why? Layout → Paint → Composite is expensive.
Transform and opacity skip straight to Composite!
*/

/* Force GPU layer for smoother animations */
.gpu-accelerated {
  will-change: transform, opacity; /* Hints browser to prepare GPU layer */
  /* Or use: */
  transform: translateZ(0);        /* Creates new compositing layer */
}

/* But don't overuse will-change! Only on animating elements.
   Too many layers = too much memory usage. */

/* Reduce motion for accessibility (respects user preferences!) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* Users who set "reduce motion" in their OS settings
   will see instant state changes instead of animations.
   This is an accessibility BEST PRACTICE. */

/* Container queries for responsive animations */
@container (min-width: 400px) {
  .card-hover {
    transition: transform 0.3s ease;
  }
  .card-hover:hover {
    transform: scale(1.02);
  }
}
Enter fullscreen mode Exit fullscreen mode

What's your favorite CSS animation trick? What UI pattern would you like to see animated?

Follow @armorbreak for more practical developer guides.

Top comments (0)