-
Notifications
You must be signed in to change notification settings - Fork 428
/
index.html
166 lines (152 loc) · 5.42 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<html>
<head>
<title>引流宝,致力于获取私域流量,多平台引流增效,数据监控工具! - 该软件遵循MIT开源协议</title>
<meta charset="utf-8">
<link rel="shortcut icon" href="../../static/img/favicon.png">
<style>
*{
padding: 0;
margin: 0;
font-family: 'Lucida Sans Unicode';
}
.logo{
width: 520px;
height: 180px;
display: block;
background: url('./static/img/index_logo.png')no-repeat;
background-size: 80%;
background-position: center;
margin: 30px auto 0;
}
hr {
height: 1px;
width: 100%;
border: none;
background: #ddd;
margin: 20px auto;
}
.title1 {
text-align: center;
font-size: 27px;
color: #666;
}
.button-group {
width: 300px;
height: 40px;
margin: 30px auto 0;
display: flex;
}
.button-group .btn {
padding: 7px 15px;
float: left;
border: none;
font-size: 16px;
border-radius: 10px;
outline: none;
margin-right: 15px;
cursor: pointer;
}
.button-group .dark-btn {
background: #385EE2;
color: #fff;
}
.title2 {
text-align: center;
font-size: 20px;
color: #666;
}
ul {
width: 100%;
margin: 20px auto 0;
background: #eee;
padding: 20px 0;
}
ul li {
text-align: center;
list-style: none;
font-size: 16px;
color: #666;
line-height: 27px;
}
.zhichi {
text-align: center;
color: #999;
font-size: 17px;
margin: 20px 0;
}
.zhichiimg {
display: block;
width: 200px;
margin: 20px auto 30px;
}
.footer {
width: 100%;
height: 100px;
background: #eee;
text-align: center;
line-height: 100px;
}
.footer .link {
text-decoration: none;
color: #666;
font-size: 14px;
margin-left: 10px;
}
</style>
</head>
<body>
<!-- 该软件遵循MIT开源协议 -->
<!-- 该软件遵循MIT开源协议 -->
<!-- 该软件遵循MIT开源协议 -->
<!-- 作者:https://segmentfault.com/u/tanking -->
<div id="app">
<!--LOGO-->
<div class='logo'></div>
<!--分割线-->
<hr><br>
<!--标题-->
<p class="title1">致力于获取私域流量,多平台引流增效,数据监控工具</p>
<!--按钮组-->
<div class="button-group">
<a href="https://docs.qq.com/doc/DREdWVGJxeFFOSFhI" target="blank">
<button class="btn dark-btn">快速上手</button>
</a>
<a href="install" target="blank">
<button class="btn">安装</button>
</a>
<a href="console/login" target="blank">
<button class="btn">登录</button>
</a>
</div>
<!--分割线-->
<br><hr>
<!--标题-->
<p class="title2">当前版本:2.4.3</p>
<!--更新动态-->
<ul>
<li>2.4.3版本新特性:</li>
<li>UI界面大量的优化</li>
<li>新增群活码并流</li>
<li>新增短网址轮询域名</li>
<li>外部跳微信抽离出来作为插件</li>
<li>群活码、客服码、渠道码整合到活码一栏</li>
<li>提供用户账号注册</li>
<li>渠道码新增操作系统渠道数据记录</li>
<li>新增卡密分发小程序管理</li>
<li>新增域名检测定时任务</li>
</ul>
<br>
<!--标题-->
<p class="title2">支持作者</p>
<p class="zhichi">视个人能力适当支持作者持续维护该项目</p>
<!--赞赏码-->
<img src="./static/img/zhichi.jpg" class="zhichiimg" />
<!--底部-->
<div class="footer">
<a href="https://segmentfault.com/u/tanking" class="link" target="blank">🔗作者博客</a>
<a href="https://github.com/likeyun/liKeYun_Ylb" class="link" target="blank">🔗开源仓库</a>
<a href="https://beian.miit.gov.cn/" class="link" target="blank">🔗粤ICP备XXXXXXXX号</a>
</div>
</div>
</body>
</html>