Create CSS keyframe animations with visual controls. Preview and copy code instantly.
/* CSS Animation */ .anim { animation: fadeIn 1s infinite; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }