DAILYTOOLS

CSS Animation Tester

Preview basic CSS keyframe animations.

Select Animation

1s
pulse
.animated-element {
  animation: pulse 1s infinite;
}

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