Back to Tools

CSS Animation Generator

Create CSS animations.

@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.animated {
  animation: bounce 1s infinite;
}
146 chars
Board loaded!