15 lines
158 B
CSS
Vendored
15 lines
158 B
CSS
Vendored
@keyframes zoomIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: scale3d(0.3, 0.3, 0.3);
|
|
}
|
|
|
|
50% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.zoomIn {
|
|
animation-name: zoomIn;
|
|
}
|