animate.css/source/flippers/flipOutX.css

21 lines
338 B
CSS
Raw Normal View History

@keyframes flipOutX {
from {
transform: perspective(400px);
2014-07-05 19:37:35 +02:00
}
30% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
100% {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
animation-name: flipOutX;
backface-visibility: visible !important;
}