kuda.ai

Thoughts on programming and music theory.

dark mode

CSS text pulse animation

Created on December 10, 2025

css

@keyframes pulse {
  0%   { opacity: 1; }
  50%  { opacity: 0.4; }
  100% { opacity: 1; }
}

.loading {
  animation: pulse 1.2s ease-in-out infinite;
}
<span class="loading">loading ...</span>