Skip to content

Commit b606faf

Browse files
committed
feat: 更新首页加群信息
1. 更新首页第二屏的加群信息内容\n2. 添加逆向技术交流群、个人微信和TG群的实际二维码\n3. 优化多个二维码的显示样式\n4. 调整内容布局和交互效果
1 parent 329b344 commit b606faf

File tree

1 file changed

+24
-11
lines changed

1 file changed

+24
-11
lines changed

public/index.html

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@
138138
/* 第二屏样式 */
139139
.screen-2 {
140140
background: linear-gradient(135deg, #43e97b, #38f9d7);
141+
padding-top: 100px;
142+
padding-bottom: 100px;
141143
}
142144

143145
/* 标题样式 */
@@ -192,6 +194,8 @@
192194
border-radius: 15px;
193195
backdrop-filter: blur(5px);
194196
border: 2px solid rgba(255, 255, 255, 0.2);
197+
overflow-y: auto;
198+
max-height: 80vh;
195199
}
196200

197201
.join-group h2 {
@@ -201,29 +205,36 @@
201205

202206
.join-group p {
203207
font-size: 1.2rem;
204-
margin-bottom: 20px;
208+
margin-bottom: 10px;
209+
margin-top: 20px;
205210
line-height: 1.6;
206211
}
207212

208213
.qr-code {
209214
max-width: 200px;
210-
margin: 20px auto;
215+
margin: 10px auto;
211216
display: block;
212217
border: 5px solid white;
213218
border-radius: 10px;
219+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
220+
transition: transform 0.3s ease;
221+
}
222+
223+
.qr-code:hover {
224+
transform: scale(1.05);
214225
}
215226

216227
.join-button {
217228
display: inline-block;
218-
padding: 12px 30px;
229+
padding: 8px 20px;
219230
background: rgba(255, 255, 255, 0.2);
220231
color: white;
221232
text-decoration: none;
222233
border-radius: 30px;
223234
font-size: 1.1rem;
224-
margin-top: 20px;
225235
transition: all 0.3s ease;
226236
border: 2px solid rgba(255, 255, 255, 0.3);
237+
margin: 0 5px;
227238
}
228239

229240
.join-button:hover {
@@ -293,13 +304,15 @@ <h1>Goat List</h1>
293304
<!-- 第二屏:加群信息 -->
294305
<div class="screen screen-2" id="screen-2">
295306
<div class="join-group">
296-
<h2>加入我们的技术社区</h2>
297-
<p>欢迎加入我们的JavaScript逆向工程交流群,与其他开发者一起讨论技术、分享经验,共同进步。</p>
298-
<p>扫描下方二维码或点击按钮加入:</p>
299-
<!-- 这里可以放置实际的二维码图片 -->
300-
<img src="https://placeholder-for-qrcode.com/200x200" alt="QR Code" class="qr-code">
301-
<p>或添加微信: <strong>JSREI-Group</strong></p>
302-
<a href="https://github.com/JSREI" class="join-button" target="_blank">了解更多</a>
307+
<h2>逆向技术交流群</h2>
308+
<p>扫码加入逆向技术交流群:</p>
309+
<img src="https://cdn.jsdelivr.net/gh/JSREI/.github/profile/README.assets/image-20241016230653669.png" alt="逆向技术交流群二维码" class="qr-code">
310+
311+
<p>如群二维码过期,可以加我个人微信,发送【逆向群】拉你进群:</p>
312+
<img src="https://cdn.jsdelivr.net/gh/JSREI/.github/profile/README.assets/image-20231030132026541-7614065.png" alt="个人微信二维码" class="qr-code">
313+
314+
<p><a href="https://t.me/jsreijsrei" target="_blank" class="join-button">点此</a>或扫码加入TG交流群:</p>
315+
<img src="https://cdn.jsdelivr.net/gh/JSREI/.github/profile/README.assets/image-20241016231143315.png" alt="TG交流群二维码" class="qr-code">
303316
</div>
304317
</div>
305318
</div>

0 commit comments

Comments
 (0)