2013-11-12 00:32:40 +01:00
|
|
|
@keyframes flipOutY {
|
2015-08-06 06:22:40 +02:00
|
|
|
from {
|
2014-07-06 22:32:34 +02:00
|
|
|
transform: perspective(400px);
|
2014-07-05 19:37:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
30% {
|
2014-07-06 22:32:34 +02:00
|
|
|
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
|
2014-02-23 21:39:02 +01:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2015-08-21 04:26:35 +02:00
|
|
|
to {
|
2014-07-06 22:32:34 +02:00
|
|
|
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
|
2014-02-23 21:39:02 +01:00
|
|
|
opacity: 0;
|
|
|
|
}
|
2013-11-12 00:32:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.flipOutY {
|
2018-01-25 18:03:02 +01:00
|
|
|
animation-duration: 0.75s;
|
2014-02-23 22:56:08 +01:00
|
|
|
backface-visibility: visible !important;
|
|
|
|
animation-name: flipOutY;
|
2014-02-23 21:39:02 +01:00
|
|
|
}
|