feat: layout右上角的操作按钮添加动效 (#1254)

This commit is contained in:
xiaoming
2026-01-06 12:38:52 +08:00
committed by GitHub
parent ace4c07590
commit 4f59013b61
9 changed files with 85 additions and 38 deletions

View File

@@ -35,3 +35,18 @@
.html-weakness {
filter: invert(80%);
}
/* 轻微缩小,再恢复原状的平滑缩放动画 */
@keyframes pure-scale-bounce {
0% {
transform: scale(1);
}
50% {
transform: scale(0.9);
}
100% {
transform: scale(1);
}
}