rule.html
6.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta content="telephone=no" name="format-detection">
<meta name="wap-font-scale" content="no">
<title></title>
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/layer.css">
<link rel="stylesheet" href="css/index.css?231323">
<script src="lib/fsize.js"></script>
<style>
</style>
</head>
<body>
<div id="app" class="rule-bg">
<div style="height: 0.05rem;"></div>
<p class="rule-p1">{{textObj.txt1}}</p>
<div class="table"></div>
<p class="rule-p2">{{textObj.txt2}}</p>
<p class="rule-p3"><span>1.</span>{{textObj.txt3}}</p>
<p class="rule-p4"><span>2.</span>{{textObj.txt4}}</p>
<p class="rule-p5"><span>3.</span>{{textObj.txt5}}</p>
<p class="rule-p6"><span>4.</span>{{textObj.txt6}}</p>
<p class="rule-p7">{{textObj.txt7}}</p>
<p class="rule-p8"><span>1.</span>{{textObj.txt8}}</p>
<p class="rule-p9"><span>2.</span>{{textObj.txt9}}</p>
<p class="rule-p10"><span>3.</span>{{textObj.txt10}}</p>
<p class="rule-p11"><span>4.</span>{{textObj.txt11}}</p>
<p class="rule-p12"><span>5.</span>{{textObj.txt12}}</p>
<p class="rule-p13"><span>6.</span>{{textObj.txt13}}</p>
<p class="rule-p14"><span>7.</span>{{textObj.txt14}}</p>
<p class="rule-p15"><span>8.</span>{{textObj.txt15}}</p>
</div>
</body>
<script src="lib/vue.min.js"></script>
<script src="lib/jquery-3.1.1.min.js"></script>
<script src="lib/default.js?v=23123"></script>
<script>
$(function () {
var app = new Vue({
el: '#app',
data: {
textObj:'',
titleName:'',
},
mounted: function() {
this.$nextTick(function () {
if(sessionStorage.lang==1){
titleName='Event Rules'
document.getElementsByTagName("title")[0].innerHTML=titleName
$(".table").addClass("table-en")
this.textObj={
txt1:"Live two hours a day to get corresponding rewards according to the Pop Index, Interaction Index, and Gift Index to reach the goals. You can get up to 8000 feather rewards every day.",
txt2:'Glossary:',
txt3:"Pop Index:The Pop Index is affected by the number of online users and gift givers. The more people online and giving gifts in the average hourly live room, the higher the Pop Index.",
txt4:"Interactive index:The Interactive index is affected by the number of people chatting and chats. The more people chat in the average hourly live room, the higher the Interactive Index.",
txt5:"Gift Index:The more gifts received (increased FEATHERs), the higher the Gift Index.",
txt6:'The Pop Index and Interaction Index are average values, which will both rise and fall. The live broadcast time and Gift Index are growth values, which will only increase.',
txt7:'Rules:',
txt8:'All rewards must meet the basic goal of “2 hours of live broadcast”. No rewards can be received if the live broadcast does not reach 2 hours.',
txt9:'Both the Pop Index and the Interaction Index are divided into two goals: basic and advanced. You must complete the Pop Index goal before you can unlock the Interaction Index goal. (That is, after completing the basic goal of popularity, the basic goal of interaction will be unlocked; after completing the advanced goal of popularity, the advanced goal of interaction will be unlocked)',
txt10:'If the Pop Index reaches the goal and falls below the target again, the corresponding Interaction Index goal will be re-locked to the unlocked state.',
txt11:'Event data is updated every minute.',
txt12:'Each user is limited to receive once, and multiple accounts will cancel the activity qualification and no reply will be given.',
txt13:'During the restricted activity qualification period, all event data will be invalid and must be obtained again after the restriction is lifted.',
txt14:'Rewards need to be received manually on the same day. Overtime collection is not allowed.',
txt15:'The final interpretation right of the activity belongs to the platform'
}
}else{
titleName='活動規則'
document.getElementsByTagName("title")[0].innerHTML=titleName
this.textObj={
txt1:"每天直播2小時,根據人氣指數、互動指數、禮物指數達到目標值可獲得對應的獎勵,每天最多可獲得8000羽毛獎勵",
txt2:'名詞說明:',
txt3:"人氣指數:平均每小時直播間在線人數越多、送禮人數越多則人氣指數越高;",
txt4:"互動指數:平均每小時直播間聊天人數越多、聊天數量越多則互動指數越高;",
txt5:"禮物指數:收到的禮物越多(增加的羽毛)則禮物指數越高;",
txt6:'人氣指數、互動指數為平均值,既會出現上升,亦會出現下降,直播時長、禮物指數為增長值,只會上升,不會下降。',
txt7:'規則說明:',
txt8:'所有獎勵的必須滿足基礎目標「直播2小時」,若直播未達到2小時,無法獲得任何獎勵;',
txt9:'人氣指數、互動指數均分為基礎、進階2個目標,需要先完成人氣目標,才能解鎖應對的互動目標。(即完成人氣的基礎目標後,解鎖互動的基礎目標;完成人氣的進階目標後,解鎖互動的進階目標)',
txt10:'若人氣指數達到目標後,又下降至目標下,則對應的互動指數目標,在解鎖之後,將重新鎖定為未解鎖狀態;',
txt11:'活動數據每分鐘更新一次; ',
txt12:'每人僅限一個賬號領取,多賬號領取將取消活動資格不再回復;',
txt13:'被限制活動參與資格期間,所有活動數據均為無效數據,需在解除限制後重新獲取;',
txt14:'獎勵均需在當日手動領取,若超時將無法領取;',
txt15:'活動最終解釋權歸平台所有。'
}
}
});
},
methods: {
},
computed: {
}
});
})
</script>
</html>