添加默认过渡动画

This commit is contained in:
lutinglt
2025-01-10 11:24:31 +08:00
parent f4ed01f60c
commit e95a272071
2 changed files with 14 additions and 1 deletions

2
.github/release.md vendored
View File

@@ -1 +1 @@
仓库编程语言字体颜色同步 Github 添加默认过渡动画

View File

@@ -1,4 +1,16 @@
// Made by Luting ^-^ // Made by Luting ^-^
@keyframes overlay-appear {
0% {
opacity: 0;
transform: translateY(-5%);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
input, input,
textarea, textarea,
tr, tr,
@@ -43,4 +55,5 @@ details summary,
.ui.vertical.menu .header.item, .ui.vertical.menu .header.item,
.ui.secondary.menu .item { .ui.secondary.menu .item {
transition: 0.2s; transition: 0.2s;
animation: 200ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running overlay-appear;
} }