boom规则暂存

This commit is contained in:
dragon
2024-10-12 17:36:01 +08:00
parent 70ed4423ed
commit 2af6e11cae

View File

@@ -0,0 +1,82 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title class="text1"></title>
<link rel="stylesheet" href="../../common/css/reset.css">
<link rel="stylesheet" href="./style/cpRule.css">
</head>
<body>
<!-- 阿语区 -->
<h3>1.透過贈送禮物來增加房間的BOOM值。 1金幣普通禮物=1 BOOM值 20金幣幸運禮物=1BOOM價值。</h3>
<h3>2.當BOOM值達到100%時將觸發超級大獎BOOM房間內的使用者可以獲得獎勵。</h3>
<h3>3.貢獻排名並觸發BOOM的用戶將獲得該級別的超級獎品房間內的其他用戶將隨機獲得獎品。</h3>
<h3>4. 每次觸發BOOM房主都有機會獲得金幣獎勵。</h3>
<h3>5. BOOM等級越高獲得的獎勵越豐富。</h3>
<h3>6. BOOM值每天0:00GMT+3更新</h3>
<h3>7.本平台擁有本活動最終解釋權。</h3>
<!-- 英语区 -->
<p>1.透過贈送禮物來增加房間的BOOM值。 1金幣普通禮物=1 BOOM值 50金幣幸運禮物=2BOOM價值。</p>
<p>2.當BOOM值達到100%時將觸發超級大獎BOOM房間內的使用者可以獲得獎勵。</p>
<p>3.貢獻排名並觸發BOOM的用戶將獲得該級別的超級獎品房間內的其他用戶將隨機獲得獎品。</p>
<p>4. 每次觸發BOOM房主都有機會獲得金幣獎勵。</p>
<p>5. BOOM等級越高獲得的獎勵越豐富。</p>
<p>6. BOOM值每天0:00GMT+3更新</p>
<p>7.本平台擁有本活動最終解釋權。</p>
</body>
</html>
<script src="../../common/js/flexible.js"></script>
<script src="../../common/js/jquery-3.2.1.min.js"></script>
<script src="../../common/js/common2.js"></script>
<script src="../../common/js/layer.js"></script>
<script src="../../common/js/vconsole.min.js"></script>
<script src="../../common/js/route-constant.js"></script>
<script src="./local/en.js"></script>
<script src="./local/zh.js"></script>
<script src="./local/ar.js"></script>
<script src="../../common/local/langHandler.js"></script>
<script>
var langReplace;
var localLang;
// 初始化函數
$(function () {
getInfoFromClient();
fuzzyMatchUpdateQueryStringParameterFun(); // 判断语言
setTimeout(function () {
fuzzyMatchUpdateQueryStringParameterFun(); // 判断语言
langReplace = window.lang.replace;
localLang = window.lang;
translateFun();
}, 100)
})
function translateFun() {
var langReplace = window.lang.replace;
var localLang = window.lang;
$('.text1').text(langReplace(localLang.cpRule.text1));
$('.text2').text(langReplace(localLang.cpRule.text2));
$('.text3').text(langReplace(localLang.cpRule.text3));
$('.text4').text(langReplace(localLang.cpRule.text4));
$('.text5').text(langReplace(localLang.cpRule.text5));
$('.text6').text(langReplace(localLang.cpRule.text6));
$('.text7').text(langReplace(localLang.cpRule.text7));
$('.text8').text(langReplace(localLang.cpRule.text8));
$('.text9').text(langReplace(localLang.cpRule.text9));
$('.text10').text(langReplace(localLang.cpRule.text10));
$('.text11').text(langReplace(localLang.cpRule.text11));
$('.text12').text(langReplace(localLang.cpRule.text12));
$('.text13').text(langReplace(localLang.cpRule.text13));
$('.text14').text(langReplace(localLang.cpRule.text14));
$('.text15').text(langReplace(localLang.cpRule.text15));
$('.text16').text(langReplace(localLang.cpRule.text16));
$('.text17').text(langReplace(localLang.cpRule.text17));
$('.text18').text(langReplace(localLang.cpRule.text18));
$('.text19').text(langReplace(localLang.cpRule.text19));
$('.text20').text(langReplace(localLang.cpRule.text20));
$('.text21').text(langReplace(localLang.cpRule.text21));
$('.text22').html(langReplace(localLang.cpRule.text22));
}
</script>