2013-11-12 00:32:40 +01:00
|
|
|
@keyframes bounceOut {
|
2014-07-06 22:32:34 +02:00
|
|
|
20% {
|
2017-11-16 00:20:46 +01:00
|
|
|
transform: scale3d(0.9, 0.9, 0.9);
|
2014-02-23 22:56:08 +01:00
|
|
|
}
|
2013-11-12 00:32:40 +01:00
|
|
|
|
2017-11-16 00:20:46 +01:00
|
|
|
50%,
|
|
|
|
55% {
|
2014-02-23 22:56:08 +01:00
|
|
|
opacity: 1;
|
2014-07-06 22:32:34 +02:00
|
|
|
transform: scale3d(1.1, 1.1, 1.1);
|
2014-02-23 22:56:08 +01:00
|
|
|
}
|
2013-11-12 00:32:40 +01:00
|
|
|
|
2015-08-21 04:26:35 +02:00
|
|
|
to {
|
2014-02-23 22:56:08 +01:00
|
|
|
opacity: 0;
|
2017-11-16 00:20:46 +01:00
|
|
|
transform: scale3d(0.3, 0.3, 0.3);
|
2014-02-23 22:56:08 +01:00
|
|
|
}
|
2013-11-12 00:32:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.bounceOut {
|
2018-01-25 18:03:02 +01:00
|
|
|
animation-duration: 0.75s;
|
2014-02-23 22:56:08 +01:00
|
|
|
animation-name: bounceOut;
|
2014-02-23 21:39:02 +01:00
|
|
|
}
|