mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-10 21:36:31 +01:00
15 lines
155 B
CSS
15 lines
155 B
CSS
@keyframes zoomIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: scale3d(.3, .3, .3);
|
|
}
|
|
|
|
50% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.zoomIn {
|
|
animation-name: zoomIn;
|
|
}
|