⚙️ 游戏配置
靶子移动速度
固定
慢速
中速
快速
风力强度
无风
微风
强风
狂风
风向: — 无风 —
每局箭数
3 支
5 支
8 支
10 支
准星漂移强度
4
奖品配置
🥉
🥈
🥇
操作说明
🖱️ 移动鼠标 — 控制准星位置
🖱️ 点击射击 — 发射箭矢
⌨️ 按住 Shift — 屏住呼吸(稳定准星3秒)
📌 屏住呼吸每局限用 2 次
本局得分 0
射箭挑战
移动鼠标瞄准 · 点击发射
剩余箭数 5
🏹 射箭挑战
5 支箭,瞄准靶心
准星会漂移 · 风力会偏航
按住 Shift 屏住呼吸
🫁 屏气 1
🫁 屏气 2
📊 数据统计
本局命中详情
本局总环数 0
最高单箭
靶心命中 0 次
脱靶次数 0 次
奖品解锁进度
历史最佳
历史最高分
累计局数 0
累计靶心 0
历史最高单箭
当前环境
风力等级 无风
风向偏移
靶子速度 慢速
准星状态 漂移中
function mobileSwitchTab(tab) { var left = document.getElementById('panel-left'); var right = document.getElementById('panel-right'); document.querySelectorAll('.mobile-tab').forEach(function(b){b.classList.remove('active');}); var btn = document.getElementById('tab-' + tab); if (btn) btn.classList.add('active'); if (tab === 'config') { if (left) left.classList.toggle('expanded'); if (right) right.classList.remove('expanded'); } else if (tab === 'data') { if (right) right.classList.toggle('expanded'); if (left) left.classList.remove('expanded'); } else { if (left) left.classList.remove('expanded'); if (right) right.classList.remove('expanded'); } } function toggleSound() { var on = GameSound.toggle(); var icon = document.getElementById('sound-icon'); if (icon) icon.textContent = on ? '🔊' : '🔇'; }