AI CSS Animations

slide-in-scale-up

Animation Code

Copied!
@keyframes slideInScaleUp { 0% { transform: translateX(-100%) scale(0.8); opacity: 0; } 100% { transform: translateX(0) scale(1); opacity: 1; } }

Animation Editor