feat: code owner

This commit is contained in:
bridge
2026-01-20 23:23:14 +08:00
parent 64732d6912
commit 2b8812852c
2 changed files with 8 additions and 6 deletions

2
.github/CODEOWNERS vendored Normal file
View File

@@ -0,0 +1,2 @@
/README.md wangxin4qiao@163.com
/EN_README.md wangxin4qiao@163.com

View File

@@ -74,9 +74,9 @@ watch(() => props.status?.progress, (newVal) => {
const bgOpacity = computed(() => {
const elapsed = localElapsed.value
if (elapsed <= 5) return 1
if (elapsed >= 20) return 0.8
// 5秒 -> 1.0, 20秒 -> 0.8 (线性插值)。
return 1 - (elapsed - 5) / 15 * 0.2
if (elapsed >= 20) return 0.9
// 5秒 -> 1.0, 20秒 -> 0.9 (线性插值)。
return 1 - (elapsed - 5) / 15 * 0.1
})
// SVG 圆环参数
@@ -259,9 +259,9 @@ onUnmounted(() => {
.bg-layer {
position: absolute;
inset: 0;
background: rgba(10, 10, 18, 0.85);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
background: rgba(10, 10, 18, 0.98);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
transition: opacity 0.5s ease;
}