新增转码进度显示功能,优化视频标题显示,添加编码器选择面板。

This commit is contained in:
CN-JS-HuiBai
2026-04-02 17:41:50 +08:00
parent eb6068cbb8
commit edf39d0ae4
4 changed files with 84 additions and 4 deletions

View File

@@ -401,6 +401,35 @@ header p {
font-weight: 600;
}
.progress-info {
width: 100%;
margin-top: 1rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
align-items: stretch;
}
.progress-text {
color: var(--text-secondary);
font-size: 0.95rem;
}
.progress-bar {
width: 100%;
height: 10px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.12);
overflow: hidden;
}
.progress-fill {
width: 0%;
height: 100%;
background: linear-gradient(90deg, var(--accent), var(--accent-hover));
transition: width 0.25s ease;
}
.play-btn {
margin-top: 1rem;
padding: 0.85rem 1.25rem;