This commit is contained in:
杜恒
2021-06-17 09:52:58 +08:00
parent 98d570bf8b
commit 4d2d4a49c7
10 changed files with 1678 additions and 11 deletions

File diff suppressed because one or more lines are too long

View File

@@ -58,6 +58,15 @@
.joe_header__below {
border-top: none;
}
&.current {
.joe_header__below-title {
display: block;
}
.joe_header__below-class {
display: none;
}
}
}
&__above {
position: relative;
@@ -295,6 +304,18 @@
position: relative;
border-top: 1px solid var(--classC);
height: 45px;
&-title {
max-width: 450px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: none;
line-height: 45px;
font-size: 17px;
font-weight: 700;
color: var(--main);
animation: showHeaderTitle 0.35s;
}
&-class {
display: flex;
.item {
@@ -3967,3 +3988,14 @@
background-color: #409eff;
}
}
@keyframes showHeaderTitle {
0% {
opacity: 0.25;
transform: scale(0.25);
}
100% {
opacity: 1;
transform: scale(1);
}
}