更新(20191119)

This commit is contained in:
2019-11-19 21:28:41 +08:00
parent dcd6b5c7b3
commit c0b7414b32
9 changed files with 70 additions and 29 deletions

View File

@@ -101,3 +101,13 @@ html {
transform: rotate(360deg);
}
}
@keyframes ToolPanelShow {
from {
bottom: -110%;
opacity: 0;
}
to {
bottom: 0;
opacity: 1;
}
}

View File

@@ -208,13 +208,14 @@ footer p {
/* 工具面板 */
.tool-panel {
/* visibility: hidden; */
display: none;
z-index: 100;
position: fixed;
left: 0;
bottom: -110%;
opacity: 0;
bottom: 0;
opacity: 1;
transition: all 0.5s;
animation: ToolPanelShow 0.5s;
}
.tool-panel-bar {