修复倒计时异常问题

This commit is contained in:
dragon
2024-10-15 10:34:47 +08:00
parent 8556f6f8de
commit dcb3f8c59e
2 changed files with 17 additions and 17 deletions

View File

@@ -206,9 +206,9 @@ function countup(leftTime) {
m = getzf(Math.floor(leftTime / 1000 / 60 % 60)); m = getzf(Math.floor(leftTime / 1000 / 60 % 60));
s = getzf(Math.floor(leftTime / 1000 % 60)); s = getzf(Math.floor(leftTime / 1000 % 60));
//將倒計時賦值到div中 //將倒計時賦值到div中
$('.header .time .hour b').text(h); $('.header .timeBox .hour b').text(h);
$('.header .time .min b').text(m); $('.header .timeBox .min b').text(m);
$('.header .time .sec b').text(s); $('.header .timeBox .sec b').text(s);
} else { } else {
getConfig(); getConfig();
} }

View File

@@ -38,20 +38,20 @@ langEn = {
</p> </p>
`, `,
arRule: ` arRule: `
<p> <p>
1. 活動時間:每日 0:00-23:59GMT+3)。<br> 1. Activity time: daily 0:00-23:59 (GMT+3).<br>
2. 每日計算您在平台上的消費,送 1 枚金幣禮物 = 1 枚金幣價值1 枚金幣幸運禮物 = 0.05 枚金幣價值。<br> 2. Daily calculation of your spending on the platform, send 1 coin gift = 1 coin value; 1 coin lucky gift = 0.05 coin value.<br>
3. 當您達到相應級別時,您將獲得相應級別的獎勵。<br> 3. When you reach the corresponding level, you will get the corresponding level reward.<br>
</p> </p>
<p> <p>
限制:<br> Restrictions:<br>
1. 充值代理不參加此活動。<br> 1. Recharge agents do not participate in this activity.<br>
2. 遊戲的投入不計為金幣消費。<br> 2. Game input is not counted as coin consumption.<br>
</p> </p>
<p> <p>
注意:<br> Attention:<br>
1. 此活動與 Google Apple 無關。 1. This activity has nothing to do with Google and Apple.
</p> </p>
` `
} }
} }