-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 1.11 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link type="text/css" href="style.css" rel="stylesheet"/>
</head>
<body>
<div class="container">
<ul class="content">
<div class="space"></div>
<div :style="{'font-size':options.fontSize}">
<span class="admin-icon">房管</span>
<span class="guard-icon guard-level-3" v-if="options.showGuardIcon"></span>
<span :class="fansIconClass" :style="{'--level': data.fansLevel}" v-if="options.showFansIcon">
<span style="color: white;float:left;padding: 0 .4em">勋章</span>
</span>
<span :class="userLevelCalss" v-if="options.showUserLevel">
UL
<span>{{data.userLevel}}</span>
</span>
<span>{{data.username}}:</span>
<span :style="{color:options.color}" v-if="options.showContent">{{data.content}}</span>
</div>
</ul>
<div style="font-size: 16px;color: black;-webkit-app-region: drag;">点击暂停获取</div>
</div>
</body>
</html>
<script src="index.js"></script>