本篇文章也是采用了自定义文章css,大家打开文章时就能够看到那个开屏动画
先保存上方原神图,也可以自行发挥,但是图片需要清晰可见然后去自定义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
    






![使用微信JSSDK分享实现微信分享有图的配置教程[微信分享有图]-十五博客](https://www.win15.cn/wp-content/uploads/2023/09/图片-1.png)



          






暂无评论内容