body:after {
content: " ";
position: fixed;
inset: 0;
background-color: white;
z-index: 999;
background-image: url(https://ttimg.cn/logo1.svg);
background-repeat: no-repeat;
background-position: center;
background-size: 20%;
animation: fadeOut 2s;
animation-fill-mode: forwards;
-webkit-transition: fadeOut 2s;
transition: fadeOut 2s;
pointer-events: none;
background-color: #fff;
}
@keyframes fadeOut {
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
        
0