animate.css/source/bouncing_entrances/bounceIn.css

37 lines
530 B
CSS
Raw Normal View History

@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, 100% {
2015-04-29 08:43:28 +02:00
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
2014-07-05 19:37:35 +02:00
20% {
transform: scale3d(1.1, 1.1, 1.1);
}
2014-07-05 19:37:35 +02:00
40% {
transform: scale3d(.9, .9, .9);
}
2014-07-05 19:37:35 +02:00
60% {
opacity: 1;
transform: scale3d(1.03, 1.03, 1.03);
2014-07-05 19:37:35 +02:00
}
80% {
transform: scale3d(.97, .97, .97);
2014-07-05 19:37:35 +02:00
}
100% {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
animation-name: bounceIn;
}