越来越多的小伙伴也想得到类似MyLife主题的欢迎页面,但是很难添加,这里看到了泽泽社长的css方法,很不错,分享给需要的人。以下内容来自泽泽社长分享的方法:《使用css给xlog加上原神启动》

在主题设置——自定义css——中填写:

♾️ css 代码:
body:after {
    content: " ";
    position: fixed;
    inset: 0;
    background-color: white;
    z-index: 999;
    background-image: url(https://xlog.app/cdn-cgi/image/width=750,quality=75,format=auto,onerror=redirect/https://ipfs.xlog.app/ipfs/bafkreidmbrmalshvlprtzt7qdbk4xtolpvpstvunjogl6o373oplmhcrga);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30%;
    animation: fadeOut 3s;
    animation-fill-mode: forwards;
    -webkit-transition: fadeOut 3s;
    transition: fadeOut 3s;
    pointer-events: none;
}
@keyframes fadeOut {
  50% {
    opacity: 1;
  }
 
  100% {
    opacity: 0;
  }
}

默认是原神logo,可以替换为自己喜欢的图片

留下评论