AI CSS Animations

flip-in

Animation Code

Copied!
@keyframes flipIn { 0% { transform: rotateY(-180deg) scale(0.5); opacity: 0; } 100% { transform: rotateY(0deg) scale(1); opacity: 1; } }

Animation Editor