在网页打开时显示一个全屏启动动画(模仿原神启动界面),然后自动淡出显示网站主页内容。
代码&文件
文件
yuanshen.svg
svg文件
11.3K
代码
body::after {
content: "";
position: fixed;
inset: 0;
background-color: white;
z-index: 9999;
background-image: url('yuanshen.svg'); /* 用绝对或相对路径 */
background-repeat: no-repeat;
background-position: center;
background-size: 30%;
animation: fadeOut 2s ease-out 1s forwards;
pointer-events: auto;
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
visibility: hidden;
}
}
使用教程
首先上传
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容