Skip to content

Commit

Permalink
upt
Browse files Browse the repository at this point in the history
  • Loading branch information
HEUDavid committed Sep 20, 2024
1 parent 8b201b8 commit 52778c6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions static/src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -148,15 +148,15 @@ form {
font-family: monospace;
font-size: 12px;
text-align: center;
opacity: 0; /* 初始透明度为 0 */
visibility: hidden; /* 初始不可见 */
transition: opacity 0.3s ease, visibility 0.3s ease; /* 添加 visibility 的过渡 */
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
z-index: 1000;
}

.tooltip.show {
opacity: 1; /* 显示时的透明度为 1 */
visibility: visible; /* 显示时可见 */
opacity: 1;
visibility: visible;
}

.list li .circle::before {
Expand Down

0 comments on commit 52778c6

Please sign in to comment.