forked from likeyun/liKeYun_ylb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
177 lines (163 loc) · 5.76 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
167
168
169
170
171
172
173
174
175
176
177
<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: 200px;
height: 40px;
margin: 30px auto 0;
}
.button-group .left {
width: 100px;
height: 40px;
float: left;
border: none;
background: #385EE2;
color: #fff;
font-size: 16px;
border-radius: 10px;
outline: none;
}
.button-group .left:hover {
background: #2149d5;
cursor: pointer;
}
.button-group .right {
width: 80px;
height: 40px;
float: right;
border: none;
background: #F1F1F1;
color: #666;
font-size: 16px;
border-radius: 10px;
outline: none;
}
.button-group .right:hover {
background: #e6e3e3;
cursor: pointer;
}
.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="left">快速上手</button>
</a>
<a href="./install" target="blank">
<button class="right">安装</button>
</a>
</div>
<!--分割线-->
<br><hr>
<!--标题-->
<p class="title2">当前版本:2.3.0</p>
<!--更新动态-->
<ul>
<li>UI优化</li>
<li>优化升级</li>
<li>首页优化</li>
<li>优化外部跳微信</li>
<li>新增用户组</li>
<li>新增域名用户组授权</li>
<li>首页新增近7天IP数据</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>