feat(timer): 训练中轮换姿势要领 + hint 字号调大

- 训练中 hint 每 12 秒轮换一条平板支撑姿势要领(收紧核心/肩膀放松/
  别塌腰/别憋气等 10 条),替代固定文案,帮助持续纠正姿势
- 姿势文案与间隔移入 config.js(postureTips/tipInterval),统一管理
- hint 字号 28rpx -> 34rpx,图标 32rpx -> 36rpx,更易看清

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-09 11:04:37 +08:00
parent ed16ac5efd
commit 885db8c18b
4 changed files with 48 additions and 6 deletions
+21 -1
View File
@@ -26,5 +26,25 @@ module.exports = {
tts: {
female: { voiceType: 501004, volume: 9, speed: 1 },
male: { voiceType: 502005, volume: 9, speed: 1 }
}
},
/**
* 训练中轮换显示的平板支撑姿势要领。每条显示 tipInterval 秒后切换,
* 循环播放,帮助用户持续纠正姿势。增删改这里即可,无需改逻辑代码。
*/
postureTips: [
'收紧核心,腰部平直',
'肩膀沉肩,不要耸肩',
'目光看向地面,颈部保持自然中立',
'均匀呼吸,不要憋气',
'臀部与身体成一条直线',
'手肘位于肩正下方',
'腹部收紧,别塌腰',
'双腿伸直略微分开,脚跟后蹬',
'骨盆微微后倾,别翘臀',
'保持稳定,身体不晃'
],
/** 姿势要领每条显示的秒数 */
tipInterval: 10
}