文章最后更新时间:
给网站加一个原神的动画,当你打开网站的时候就会出现原神启动,并且十分美观,原神的图标我放下面了,并且以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
- 最新
- 最热
只看作者