You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
189 B
19 lines
189 B
3 months ago
|
@keyframes zoomOut {
|
||
|
from {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
50% {
|
||
|
opacity: 0;
|
||
|
transform: scale3d(0.3, 0.3, 0.3);
|
||
|
}
|
||
|
|
||
|
to {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.zoomOut {
|
||
|
animation-name: zoomOut;
|
||
|
}
|