代码部署
直接将下面的代码放到:子比主题–>>自定义CSS样式即可,里面有一个图片链接,可以用我的也可以本地保存一下
/*加载动画*/
body:after {
content: " ";
position: fixed;
inset: 0;
background-color: white;
z-index: 999;
background-image: url(svg路径链接);
background-repeat: no-repeat;
background-position: center;
background-size: 30%;
animation: fadeOut 3s;
animation-fill-mode: forwards;
-webkit-transition: fadeOut 3s;
transition: fadeOut 2s;
pointer-events: none
}
@keyframes fadeOut {
50% {
opacity: 1
}
100% {
opacity: 0
}
}
喜欢就支持一下吧
暂无评论内容