popularityHelp.html
2.95 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
<!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">
<link rel="stylesheet" href="css/base.css">
<script src="../../lib/fsize.js"></script>
<title>人氣指數</title>
<style type="text/css">
.main {
background-color: #FFF;
line-height: 1.1;
font-size: 0;
width: 10rem;
margin: 0 auto;
position: relative;
color: #000;
font-size: 0.4rem;
padding: 0.2rem 0.2rem 0;
box-sizing: border-box;
}
p {
font-size: 0.473rem;
font-weight: bolder;
margin-bottom: 0.2rem;
margin-top: 0.2rem;
}
</style>
</head>
<body>
<div class="main">
<div class="lang-cn">
<p>人氣指數</p>
什麼是人氣指數?<br>
人氣指數是衡量主播直播間人氣的一個指數,主要受直播間的圍觀人數和送禮人數所影響,人氣指數越高代表主播的人氣越高。<br>
什麼是人氣指數榜?<br>
人氣指數榜用於展示當前所有在線直播間的人氣指數,直播間的圍觀人數越多,贈送主播禮物的人越多,主播的人氣指數就越高。<br>
<p>人氣指數榜計算規則</p>
人氣指數榜按照主播的人氣指數排名,想讓心儀的主播排名更靠前,快快為她增加人氣指數吧<br>
</div>
<div class="lang-en">
<p>The Pop Index</p>
What is the Pop Index?<br>
The Pop Index is the index that used to measure broadcaster's popularity. It's mainly affected by the
audience's quantity and the gift givers quantity. Higher Pop Index means higher popularity.<br>
What is the Pop Index Rank list?<br>
The Pop Index Rank list is used to show all the online broadcastesr's Pop Index. More audience and gift
sender lead to higher Pop Index.<br>
<p>The calculating rule of Pop Index rank list</p>
The Pop Index ranking is according to the Pop Index value. If you want your favorite broadcaster on the top
of the list, try to invite friends to join her live room and send her gifts.<br>
</div>
</div>
</body>
<script src="../../lib/jquery-3.1.1.min.js"></script>
<script src="../../lib/langchange.js?v=202010211605"></script>
<script type="text/javascript">
if (!langType) {
$('.lang-cn').show();
$('.lang-en').hide();
} else {
$('.lang-cn').hide();
$('.lang-en').show();
}
</script>
</html>