Flip Out Y Animation Effect
Run
HTML
Flip Out Y
CSS
.circle { width: 100px; height: 100px; background: #ad132a; border-radius: 50%; } .flipOutY { backface-visibility: visible !important; animation-name: flipOutY; animation-duration: .75s; animation-duration: 1s; animation-iteration-count: infinite; animation-delay: 1s; animation-fill-mode: both; } @keyframes flipOutY { 0% { transform: perspective(400px); } 30% { transform: perspective(400px) rotate3d(0, 1, 0, -15deg); opacity: 1; } 100% { transform: perspective(400px) rotate3d(0, 1, 0, 90deg); opacity: 0; } }
Follow Us