feat(about): 优化关于页面样式与功能
- 添加毛玻璃效果和背景模糊滤镜 - 改进导航栏布局和激活状态样式 - 优化操作按钮样式和交互反馈 - 完善语言切换功能,支持中英文字样显示 - 增强主题切换逻辑,同步按钮激活状态 - 改进博客文章渲染,支持多分类标签展示 - 优化日期格式化函数,适配中英文显示 - 调整标签云布局算法,改善视觉效果 - 增加标签网格定位和缩放限制 - 优化球形标签云旋转逻辑和自动旋转速度
This commit is contained in:
@@ -571,6 +571,8 @@ body {
|
||||
height: auto;
|
||||
border-radius: 0;
|
||||
background: var(--dock-bg);
|
||||
backdrop-filter: blur(12px) saturate(120%);
|
||||
-webkit-backdrop-filter: blur(12px) saturate(120%);
|
||||
border-top: 1px solid rgba(128,128,128,0.1);
|
||||
padding-bottom: env(safe-area-inset-bottom);
|
||||
z-index: 1000;
|
||||
@@ -582,26 +584,38 @@ body {
|
||||
width: 100%;
|
||||
justify-content: space-around;
|
||||
padding: 10px 0;
|
||||
display: flex;
|
||||
}
|
||||
.nav-item {
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
font-size: 0.7rem;
|
||||
padding: 8px 0;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
.nav-item i {
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
.nav-label {
|
||||
font-size: 10px;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
.nav-item.active {
|
||||
color: var(--text-primary);
|
||||
}
|
||||
.action-btn .btn-text {
|
||||
display: none;
|
||||
}
|
||||
.action-btn {
|
||||
font-size: 1.2rem;
|
||||
padding: 5px;
|
||||
background: transparent;
|
||||
padding: 8px;
|
||||
background: rgba(128,128,128,0.08);
|
||||
border-radius: 12px;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
.action-btn.is-active {
|
||||
background: rgba(108, 92, 231, 0.25);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Stacking Bento */
|
||||
|
||||
Reference in New Issue
Block a user