animate.css/source/bouncing_entrances/bounceIn.css

34 lines
379 B
CSS
Raw Normal View History

@keyframes bounceIn {
0% {
opacity: 0;
transform: scale(.3);
}
2014-07-05 19:37:35 +02:00
20% {
transform: scale(1.1);
}
2014-07-05 19:37:35 +02:00
40% {
transform: scale(.9);
}
2014-07-05 19:37:35 +02:00
60% {
opacity: 1;
transform: scale(1.03);
}
80% {
transform: scale(.97);
}
100% {
opacity: 1;
transform: scale(1);
}
}
.bounceIn {
animation-name: bounceIn;
2014-07-05 19:37:35 +02:00
animation-duration: .75s;
}