新增效果

This commit is contained in:
hanasaki-misaki
2023-03-18 10:13:09 +08:00
parent 32c6fec48f
commit 479a3a287e
10 changed files with 136 additions and 61 deletions

View File

@@ -1,6 +1,12 @@
/* 去除左右滚动 */
body{
overflow-x:hidden;
overflow-x:hidden!important;
}
/* a标签去除下划线 */
a{
text-decoration:none!important;
}
/* loading start */
#loading {
position: fixed;
@@ -9,7 +15,7 @@ body{
left: 0;
right: 0;
z-index: 10000;
background-color: #242222;
background-color: #4d4a4a;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
@@ -18,14 +24,10 @@ body{
justify-content: center;
align-items: center;
}
#loading span {
width: 100px;
height: 100px;
border-radius: 50%;
border: 10px solid #777777;
border-top-color: #fff;
#loading span img {
width: 100%;
height: 100%;
position: relative;
animation: loadingA 1s linear infinite;
}
@keyframes loadingA {
from {}