2013-11-12 00:32:40 +01:00
|
|
|
@keyframes flipInX {
|
2015-08-06 06:22:40 +02:00
|
|
|
from {
|
2014-07-06 22:32:34 +02:00
|
|
|
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
2015-04-29 08:37:43 +02:00
|
|
|
animation-timing-function: ease-in;
|
2014-02-23 21:39:02 +01:00
|
|
|
opacity: 0;
|
|
|
|
}
|
2013-11-12 00:32:40 +01:00
|
|
|
|
2014-02-23 21:39:02 +01:00
|
|
|
40% {
|
2014-07-06 22:32:34 +02:00
|
|
|
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
2015-04-29 08:37:43 +02:00
|
|
|
animation-timing-function: ease-in;
|
2014-02-23 21:39:02 +01:00
|
|
|
}
|
2013-11-12 00:32:40 +01:00
|
|
|
|
2014-07-05 19:37:35 +02:00
|
|
|
60% {
|
2014-07-06 22:32:34 +02:00
|
|
|
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
|
2014-07-05 19:37:35 +02:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
80% {
|
2014-07-06 22:32:34 +02:00
|
|
|
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
|
2014-02-23 21:39:02 +01:00
|
|
|
}
|
2013-11-12 00:32:40 +01:00
|
|
|
|
2015-08-21 04:26:35 +02:00
|
|
|
to {
|
2014-07-06 22:32:34 +02:00
|
|
|
transform: perspective(400px);
|
2014-02-23 21:39:02 +01:00
|
|
|
}
|
2013-11-12 00:32:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.flipInX {
|
2014-02-23 22:56:08 +01:00
|
|
|
backface-visibility: visible !important;
|
|
|
|
animation-name: flipInX;
|
2014-02-23 21:39:02 +01:00
|
|
|
}
|