24 lines
425 B
CSS
24 lines
425 B
CSS
@keyframes fadeAndScale {
|
|
0% {
|
|
opacity: 0;
|
|
/*transform: scale(1);*/
|
|
}
|
|
100% {
|
|
opacity: 0.2;
|
|
/*transform: scale(1);*/
|
|
}
|
|
}
|
|
.funny-gift {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
object-fit: cover;
|
|
z-index: 9999;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
animation: fadeAndScale 20s linear forwards;
|
|
animation-delay: 2s;
|
|
}
|