Commit 77d53463 by kaisa

feat:优化火箭坠落音效

parent 81db47ea
Showing with 8 additions and 7 deletions
...@@ -543,13 +543,6 @@ ...@@ -543,13 +543,6 @@
var boomNum = 252; var boomNum = 252;
$(".fly").fadeOut(350); $(".fly").fadeOut(350);
betBoom(); betBoom();
// 用户参与了但是没跳船成功
if (
data.result.userData.player == 1 &&
data.result.userData.jumper != 1
) {
betLose();
}
$(".boomShow").show(); $(".boomShow").show();
boomTime = setInterval(function () { boomTime = setInterval(function () {
...@@ -560,6 +553,14 @@ ...@@ -560,6 +553,14 @@
$(".boomShow").hide(); $(".boomShow").hide();
} }
}, 70); }, 70);
// 用户参与了但是没跳船成功
if (
data.result.userData.player == 1 &&
data.result.userData.jumper != 1
) {
betLose();
}
} }
function goHotShow() { function goHotShow() {
var goHotNum1 = 134; var goHotNum1 = 134;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment