给你的网站添加一个原神启动开屏动画

本篇文章也是采用了自定义文章css,大家打开文章时就能够看到那个开屏动画

4045358

先保存上方原神图,也可以自行发挥,但是图片需要清晰可见然后去自定义css里填入:

/*原神启动*/body:after {    content: " ";    position: fixed;    inset: 0;    background-color: white;    z-index: 999;    background-image: url(图片链接);    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;  }}
© 版权声明
THE END
喜欢就支持一下吧
点赞8 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容