mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-18 01:50:36 +01:00
23 lines
233 B
CSS
23 lines
233 B
CSS
|
@keyframes bounceIn {
|
||
|
0% {
|
||
|
opacity: 0;
|
||
|
transform: scale(.3);
|
||
|
}
|
||
|
|
||
|
50% {
|
||
|
opacity: 1;
|
||
|
transform: scale(1.05);
|
||
|
}
|
||
|
|
||
|
70% {
|
||
|
transform: scale(.9);
|
||
|
}
|
||
|
|
||
|
100% {
|
||
|
transform: scale(1);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.bounceIn {
|
||
|
animation-name: bounceIn;
|
||
|
}
|