点数规则配置
奖品区间
点数范围 奖品 概率
🐍 2点 蛇眼特奖
2.8%
3–5点 谢谢参与
27.8%
6–8点 积分奖励
41.7%
9–11点 优惠券
25%
👑 12点 豹子特大奖
2.8%
骰子模式
投掷方式
当前模式 双骰模式(2-12)
参与限制
每日次数上限
活动总次数
连续未中保底
保底触发第
幸运摇骰子
掷出你的好运,赢取丰厚奖励
+
?
总点数
今日剩余 5
实时数据
0
参与次数
0
中奖次数
0%
中奖率
1
参与用户
点数分布
摇骰记录
暂无记录
摇骰子模块 v1.0.0 | 引擎:纯CSS 3D + JS动画 | 活动:夏日大促 2026 GameHub 中台 Demo © 2026
// ─── 移动端标签切换 ─── 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 ? '🔊' : '🔇'; }