-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
593 lines (555 loc) · 23.9 KB
/
Copy pathindex.html
File metadata and controls
593 lines (555 loc) · 23.9 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
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>大地导航 - 大地的网络收藏夹</title>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?bd4b296780080a3ed1cec76ce390b1ad";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--text-primary: #1a1f36;
--text-secondary: #5b6478;
--text-muted: #98a2b3;
--accent: #4f6ef7;
--accent-grad: linear-gradient(135deg, #6366f1 0%, #4f6ef7 100%);
--card-bg: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
--border-soft: rgba(15, 23, 42, 0.06);
--shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
--shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
--shadow-lg: 0 12px 28px -6px rgba(15, 23, 42, 0.12), 0 8px 12px -8px rgba(15, 23, 42, 0.08);
--radius-card: 14px;
--radius-pill: 999px;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
background:
radial-gradient(at 0% 0%, rgba(79, 110, 247, 0.06), transparent 50%),
radial-gradient(at 100% 100%, rgba(236, 72, 153, 0.05), transparent 50%),
linear-gradient(135deg, #f1f4fa 0%, #e7ecf5 100%);
background-attachment: fixed;
min-height: 100vh;
max-width: 960px;
margin: 0 auto;
padding: 16px 20px 80px;
color: var(--text-primary);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
/* ———— 顶部导航 ———— */
.nav {
position: sticky;
top: 10px;
background: rgba(255, 255, 255, 0.75);
backdrop-filter: saturate(180%) blur(18px);
-webkit-backdrop-filter: saturate(180%) blur(18px);
border: 1px solid rgba(255, 255, 255, 0.6);
border-radius: var(--radius-pill);
padding: 8px 10px;
box-shadow: var(--shadow-md);
margin: 8px 0 28px;
display: flex;
justify-content: center;
gap: 4px;
flex-wrap: wrap;
z-index: 999;
}
.nav a {
display: inline-block;
padding: 7px 16px;
color: var(--text-secondary);
text-decoration: none;
font-size: 14px;
font-weight: 600;
border-radius: var(--radius-pill);
transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.nav a:hover {
color: #fff;
background: var(--accent-grad);
transform: translateY(-1px);
}
/* ———— 分类区块 ———— */
.section {
margin-bottom: 28px;
scroll-margin-top: 80px;
}
.section-header {
display: flex;
align-items: center;
gap: 10px;
margin: 0 0 14px 4px;
}
.section-icon {
width: 34px;
height: 34px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 17px;
font-weight: 700;
flex-shrink: 0;
box-shadow: var(--shadow-sm);
}
.section-title {
font-size: 18px;
font-weight: 700;
letter-spacing: 0.3px;
color: var(--text-primary);
}
.section-count {
font-size: 12px;
font-weight: 600;
color: var(--text-muted);
background: rgba(15, 23, 42, 0.05);
padding: 2px 10px;
border-radius: var(--radius-pill);
margin-left: auto;
}
/* ———— 链接卡片网格 ———— */
.link-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
gap: 10px;
}
.link-card {
display: flex;
align-items: center;
gap: 12px;
background: var(--card-bg);
border-radius: var(--radius-card);
padding: 12px 16px;
text-decoration: none;
color: var(--text-primary);
font-size: 14px;
font-weight: 500;
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
box-shadow: var(--shadow-sm);
border: 1px solid var(--border-soft);
position: relative;
overflow: hidden;
}
.link-card::before {
content: "";
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 3px;
background: var(--accent-grad);
transform: scaleY(0);
transform-origin: center;
transition: transform 0.25s ease;
}
.link-card:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
border-color: rgba(79, 110, 247, 0.25);
}
.link-card:hover::before {
transform: scaleY(1);
}
.link-num {
min-width: 26px;
height: 26px;
padding: 0 6px;
border-radius: 8px;
font-size: 12px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: transform 0.25s ease;
}
.link-card:hover .link-num {
transform: scale(1.08);
}
.link-text {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
flex: 1;
}
.link-arrow {
font-size: 13px;
color: var(--text-muted);
flex-shrink: 0;
transition: transform 0.25s ease, color 0.2s ease;
}
.link-card:hover .link-arrow {
color: var(--accent);
transform: translate(2px, -2px);
}
/* ———— 分类配色 ———— */
.cat-hot .section-icon { background: #fff1e0; color: #c2410c; }
.cat-yuhua .section-icon { background: #e6f6ec; color: #15803d; }
.cat-tools .section-icon { background: #e3ecff; color: #1d4ed8; }
.cat-game .section-icon { background: #fce7f3; color: #be185d; }
.cat-script .section-icon { background: #ede9fe; color: #6d28d9; }
.cat-hot .link-num { background: #fff1e0; color: #c2410c; }
.cat-yuhua .link-num { background: #e6f6ec; color: #15803d; }
.cat-tools .link-num { background: #e3ecff; color: #1d4ed8; }
.cat-game .link-num { background: #fce7f3; color: #be185d; }
.cat-script .link-num { background: #ede9fe; color: #6d28d9; }
/* ———— 入场动画 ———— */
.section { animation: fadeUp 0.5s ease both; }
.section:nth-child(2) { animation-delay: 0.05s; }
.section:nth-child(3) { animation-delay: 0.1s; }
.section:nth-child(4) { animation-delay: 0.15s; }
.section:nth-child(5) { animation-delay: 0.2s; }
@keyframes fadeUp {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
/* ———— 响应式 ———— */
@media (max-width: 600px) {
body { padding: 10px 12px 50px; }
.link-grid { grid-template-columns: 1fr; }
.nav { padding: 6px 8px; gap: 2px; }
.nav a { padding: 6px 12px; font-size: 13px; }
.section-title { font-size: 16px; }
}
</style>
</head>
<body>
<!-- 顶部导航 -->
<div class="nav">
<a href="#hot">📌 热门</a>
<a href="#yuhua">🌿 雨花</a>
<a href="#tools">🔧 工具</a>
<a href="#game">🎮 娱乐</a>
<a href="#script">⚡ 脚本</a>
</div>
<!-- 热门链接 -->
<div class="section cat-hot" id="hot">
<div class="section-header">
<div class="section-icon">📌</div>
<div class="section-title">热门链接</div>
<div class="section-count"></div>
</div>
<div class="link-grid">
<a class="link-card" href="https://www.xudadi.com" target="_blank">
<span class="link-num"></span>
<span class="link-text">许大地的官方网址</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/webjpg/" target="_blank">
<span class="link-num"></span>
<span class="link-text">图片在线批量处理工具</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/htmleditor.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">html编辑器</span>
<span class="link-arrow">↗</span>
</a>
</div>
</div>
<!-- 雨花 -->
<div class="section cat-yuhua" id="yuhua">
<div class="section-header">
<div class="section-icon">🌿</div>
<div class="section-title">雨花</div>
<div class="section-count"></div>
</div>
<div class="link-grid">
<a class="link-card" href="https://www.kdocs.cn/l/cmI60xDbB0Un" target="_blank">
<span class="link-num"></span>
<span class="link-text">雨花包本链接</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/yuhua/baoben/baoben.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">包本处理工具</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/yuhua/baoben/shuminghao.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">包本书名号处理工具</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/yuhua/baoben/duanhang.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">包本断行处理工具</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzIwMjExMzkwNA==&action=getalbum&album_id=2029979112450129923#wechat_redirect" target="_blank">
<span class="link-num"></span>
<span class="link-text">雨花公众号文章</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzIwMjExMzkwNA==&action=getalbum&album_id=3865997525819736066#wechat_redirect" target="_blank">
<span class="link-num"></span>
<span class="link-text">雨花每周食谱</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzIwMjExMzkwNA==&action=getalbum&album_id=1773154879981584386#wechat_redirect" target="_blank">
<span class="link-num"></span>
<span class="link-text">雨花包本喜报</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/yuhua/tuixiuchaxun.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">延迟退休查询</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/yuhua/swim-grade-query.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">游泳等级达级查询</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/yuhua/student-table.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">张贴/公示学员名单</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/yuhua/class-time-calc.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">打铃时间计算</span>
<span class="link-arrow">↗</span>
</a>
</div>
</div>
<!-- 实用工具 -->
<div class="section cat-tools" id="tools">
<div class="section-header">
<div class="section-icon">🔧</div>
<div class="section-title">实用工具</div>
<div class="section-count"></div>
</div>
<div class="link-grid">
<a class="link-card" href="/tool/720vr.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">720VR查看器</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/aes_crypto_tool.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">AES加密解密工具</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/aimoqiu.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">AI摸球模拟平台</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/amount-converter.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">金额大小写转换</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/amount-in-words.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">财务金额大小写转换</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/yuhua/baoben/duanhang.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">包本断行</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/base64convert.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">base64转换工具</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/color-conversion.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">颜色转换工具</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/excel-processor.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">Excel表格处理器</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/excelcelladdcustomchar.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">Excel表格自定义字符处理器</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/excel_splitter.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">通用Excel列内容拆分工具</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/folder-generator.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">文件夹生成器</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/hexconvert.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">进制转换工具</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/htmleditor.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">html编辑器</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/ImageCropping.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">图片裁剪工具</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/img-yasuo-online.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">图片在线压缩</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/link-editor.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">链接编辑器</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/moqiu.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">摸球模拟平台</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/yuhua/shipuchuli.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">食谱处理工具</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/text-avatar-generation.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">文字头像生成器</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/time-calc.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">保质期时间计算器</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/tree-nav.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">树状导航目录</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/userpasswordmanager.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">用户名密码管理器</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/zizeng.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">自增数字插入工具</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/zitie/" target="_blank">
<span class="link-num"></span>
<span class="link-text">字帖生成器</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/timer" target="_blank">
<span class="link-num"></span>
<span class="link-text">多功能计时器</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/tool/tent-card-maker.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">座牌打印工具</span>
<span class="link-arrow">↗</span>
</a>
</div>
</div>
<!-- 娱乐 -->
<div class="section cat-game" id="game">
<div class="section-header">
<div class="section-icon">🎮</div>
<div class="section-title">娱乐</div>
<div class="section-count"></div>
</div>
<div class="link-grid">
<a class="link-card" href="/game/chinese-chess.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">中国象棋</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/game/color-select.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">十六宫格找不同颜色</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/game/snake/index.html" target="_blank">
<span class="link-num"></span>
<span class="link-text">大战AI贪吃蛇</span>
<span class="link-arrow">↗</span>
</a>
</div>
</div>
<!-- 脚本 -->
<div class="section cat-script" id="script">
<div class="section-header">
<div class="section-icon">JS</div>
<div class="section-title">脚本</div>
<div class="section-count"></div>
</div>
<div class="link-grid">
<a class="link-card" href="/yuhua/21tb-auto-learning.user.js" target="_blank">
<span class="link-num"></span>
<span class="link-text">公需科目自动调整下一个视频</span>
<span class="link-arrow">↗</span>
</a>
<a class="link-card" href="/yuhua/edueva-auto-learning.js" target="_blank">
<span class="link-num"></span>
<span class="link-text">教师发展培训自动下一章节</span>
<span class="link-arrow">↗</span>
</a>
</div>
</div>
<script>
(function () {
'use strict';
// 遍历所有分类,为每个链接卡片自动生成序号,并同步更新分类计数
function renumber() {
document.querySelectorAll('.section').forEach(function (section) {
var cards = section.querySelectorAll('.link-grid .link-card');
cards.forEach(function (card, index) {
var num = card.querySelector('.link-num');
if (num) {
num.textContent = String(index + 1);
}
});
var count = section.querySelector('.section-count');
if (count) {
count.textContent = cards.length + ' 个';
}
});
}
// 初次渲染:自动生成全部序号
renumber();
// 使用 MutationObserver 动态监测链接变化,实时重新编号
var observer = new MutationObserver(function () {
renumber();
});
// 对每一个链接网格监听子节点的新增/删除(即链接卡片的增删)
document.querySelectorAll('.link-grid').forEach(function (grid) {
observer.observe(grid, {
childList: true, // 监测链接卡片的增删
subtree: true // 监测子树,兼容嵌套结构的变化
});
});
// 暴露到全局,便于手动添加链接后调用(通常无需手动调用,观察者会自动触发)
window.renumberLinks = renumber;
})();
</script>
</body>
</html>