-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1400 lines (1259 loc) · 65.9 KB
/
index.html
File metadata and controls
1400 lines (1259 loc) · 65.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
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M09H8GY78X"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-M09H8GY78X');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>100HTML - 500+ 免费 AI 工具集 | DeepSeek HTML 应用 · Vibe Coding · Agent Skills</title>
<meta name="description" content="100HTML.com 提供 500+ 免费开源 AI HTML 工具与页面,统一接入 DeepSeek(deepseek-chat / deepseek-reasoner),覆盖内容创作、Vibe Coding、办公提效、学习成长等场景。纯前端无需后端,打开即用,人人可用的 AI Agent Skills 工具箱。">
<meta name="keywords" content="100HTML, AI工具, DeepSeek HTML, DeepSeek API, deepseek-chat, Vibe Coding, AI Agent, Agent Skills, HTML单页工具, 免费AI工具, 内容创作, 小红书工具, AI写作, 开源工具, 纯前端AI, deepseek工具, AI编程, 零代码AI">
<meta name="author" content="100HTML.com">
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large">
<link rel="canonical" href="https://100html.com/">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://100html.com/">
<meta property="og:title" content="100HTML - 500+ 免费 AI HTML 工具集 | Vibe Coding & Agent Skills">
<meta property="og:description" content="基于 DeepSeek API 的开源 AI 工具箱。纯 HTML 前端,打开即用,覆盖内容创作、办公提效、Vibe Coding 等 500+ 实用页面与场景。">
<meta property="og:site_name" content="100HTML">
<meta property="og:locale" content="zh_CN">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="100HTML - 500+ 免费 AI 工具集 | DeepSeek HTML · Vibe Coding">
<meta name="twitter:description" content="500+ 免费开源 AI HTML 工具与页面,基于 DeepSeek API,覆盖写作、办公、学习、创意等场景,纯前端无需后端。">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="assets/favicon.svg">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon-180.png">
<!-- Schema.org JSON-LD 结构化数据 -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "100HTML",
"alternateName": ["100HTML.com", "AI HTML 工具集"],
"url": "https://100html.com/",
"description": "500+ 免费开源 AI HTML 工具集,基于 DeepSeek API(V3 / R1),覆盖内容创作、Vibe Coding、办公提效等场景。",
"inLanguage": "zh-CN",
"potentialAction": {
"@type": "SearchAction",
"target": "https://100html.com/?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "100HTML AI 工具集",
"applicationCategory": "UtilitiesApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "CNY"
},
"description": "基于 DeepSeek API 的纯前端 AI 工具箱,包含 500+ 个免费开源 HTML 页面与工具",
"url": "https://100html.com/",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.8",
"ratingCount": "520"
}
}
</script>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Vue 3 - 使用 jsDelivr CDN,带备用源 -->
<script src="https://cdn.jsdelivr.net/npm/vue@3/dist/vue.global.prod.js"></script>
<script>
// Vue CDN 备用加载
if (typeof Vue === 'undefined') {
document.write('<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/3.4.21/vue.global.prod.min.js"><\/script>');
}
</script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<style>
/* 引入 Google 字体 - 使用更有特色的字体 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;900&display=swap');
body {
background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
min-height: 100vh;
}
/* 卡片悬浮效果 */
.hover-card {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-card:hover {
transform: translateY(-6px) scale(1.01);
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
}
/* 搜索框样式 */
.search-box {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border: 1px solid rgba(226, 232, 240, 0.8);
transition: all 0.3s ease;
}
.search-box:focus-within {
border-color: #3b82f6;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
/* 分类标签样式 */
.category-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 14px;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
border: 1px solid transparent;
}
.category-badge:hover {
transform: translateY(-1px);
}
.category-badge.active {
box-shadow: 0 4px 12px -2px currentColor;
}
/* 区块标题样式 */
.section-title {
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 60%;
height: 3px;
border-radius: 2px;
background: currentColor;
opacity: 0.3;
}
/* 搜索高亮 */
.highlight {
background: linear-gradient(120deg, #fef08a 0%, #fde047 100%);
padding: 0 2px;
border-radius: 2px;
}
/* 空状态动画 */
@keyframes float {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
.float-animation {
animation: float 3s ease-in-out infinite;
}
/* 快捷筛选按钮 */
.filter-btn {
transition: all 0.2s ease;
}
.filter-btn:hover {
background: rgba(59, 130, 246, 0.1);
}
.filter-btn.active {
background: #3b82f6;
color: white;
}
/* 平台标签按钮 */
.tag-btn {
transition: all 0.2s ease;
}
.tag-btn:hover {
transform: translateY(-1px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.tag-btn.active {
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* 滚动条美化 */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
/* ========== 左侧浮动导航栏样式 ========== */
.side-nav {
position: fixed;
left: 16px;
top: 50%;
transform: translateY(-50%);
z-index: 40;
display: flex;
flex-direction: column;
gap: 4px;
/* 玻璃拟态效果 */
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(226, 232, 240, 0.8);
border-radius: 16px;
padding: 12px 8px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
max-height: 70vh;
overflow-y: auto;
transition: all 0.3s ease;
}
/* 隐藏导航栏内部滚动条 */
.side-nav::-webkit-scrollbar {
width: 3px;
}
.side-nav::-webkit-scrollbar-thumb {
background: rgba(203, 213, 225, 0.5);
border-radius: 2px;
}
/* 导航项样式 */
.side-nav-item {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
border-radius: 10px;
cursor: pointer;
transition: all 0.2s ease;
color: #64748b;
font-size: 13px;
font-weight: 500;
white-space: nowrap;
text-decoration: none;
}
.side-nav-item:hover {
background: rgba(59, 130, 246, 0.1);
color: #3b82f6;
}
.side-nav-item.active {
background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
color: white;
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.side-nav-item .nav-icon {
width: 18px;
height: 18px;
flex-shrink: 0;
}
.side-nav-item .nav-text {
overflow: hidden;
text-overflow: ellipsis;
max-width: 100px;
}
/* 折叠/展开按钮 */
.side-nav-toggle {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s ease;
color: #94a3b8;
margin-bottom: 8px;
align-self: center;
}
.side-nav-toggle:hover {
background: rgba(59, 130, 246, 0.1);
color: #3b82f6;
}
/* 折叠状态 */
.side-nav.collapsed {
padding: 8px;
}
.side-nav.collapsed .side-nav-item {
padding: 8px;
justify-content: center;
}
.side-nav.collapsed .nav-text {
display: none;
}
.side-nav.collapsed .side-nav-toggle {
transform: rotate(180deg);
}
/* 响应式:小屏幕默认折叠 */
@media (max-width: 1280px) {
.side-nav {
padding: 8px;
}
.side-nav .side-nav-item {
padding: 8px;
justify-content: center;
}
.side-nav .nav-text {
display: none;
}
}
/* 响应式:非常小的屏幕隐藏导航 */
@media (max-width: 768px) {
.side-nav {
display: none;
}
}
/* 平滑滚动 */
html {
/* scroll-behavior: smooth; Removed to allow instant jumping */
}
/* 修复加载时的闪烁问题 (FOUC) */
.hover-dropdown {
visibility: hidden;
opacity: 0;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
transform: translateY(-10px) scale(0.95);
}
.group:hover .hover-dropdown {
visibility: visible;
opacity: 1;
transform: translateY(0) scale(1);
}
/* ========== 骨架屏加载动画 ========== */
.skeleton-loader {
position: fixed;
inset: 0;
z-index: 9999;
background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
display: flex;
flex-direction: column;
transition: opacity 0.4s ease, visibility 0.4s ease;
}
.skeleton-loader.hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
.skeleton-header {
height: 64px;
background: rgba(255, 255, 255, 0.9);
border-bottom: 1px solid #e2e8f0;
display: flex;
align-items: center;
padding: 0 24px;
}
.skeleton-logo {
width: 36px;
height: 36px;
border-radius: 12px;
background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
}
.skeleton-title {
width: 180px;
height: 24px;
border-radius: 6px;
background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
margin-left: 12px;
}
.skeleton-hero {
padding: 60px 24px;
text-align: center;
background: linear-gradient(to bottom, white, #f8fafc);
border-bottom: 1px solid #e2e8f0;
}
.skeleton-hero-title {
width: 320px;
height: 40px;
border-radius: 8px;
background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
margin: 0 auto 20px;
}
.skeleton-hero-desc {
width: 480px;
max-width: 90%;
height: 20px;
border-radius: 6px;
background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
margin: 0 auto 12px;
}
.skeleton-search {
width: 400px;
max-width: 90%;
height: 48px;
border-radius: 16px;
background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
margin: 24px auto 0;
}
.skeleton-content {
flex: 1;
padding: 48px 24px;
max-width: 1280px;
margin: 0 auto;
width: 100%;
}
.skeleton-section-title {
width: 200px;
height: 28px;
border-radius: 6px;
background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
margin-bottom: 24px;
}
.skeleton-cards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 24px;
}
.skeleton-card {
background: white;
border-radius: 16px;
padding: 24px;
border: 1px solid #e2e8f0;
}
.skeleton-card-icon {
width: 48px;
height: 48px;
border-radius: 12px;
background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
margin-bottom: 16px;
}
.skeleton-card-title {
width: 60%;
height: 20px;
border-radius: 4px;
background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
margin-bottom: 12px;
}
.skeleton-card-desc {
width: 90%;
height: 14px;
border-radius: 4px;
background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
margin-bottom: 8px;
}
.skeleton-card-desc:last-child {
width: 70%;
}
@keyframes shimmer {
0% {
background-position: 200% 0;
}
100% {
background-position: -200% 0;
}
}
.loading-progress {
position: fixed;
top: 0;
left: 0;
height: 3px;
background: linear-gradient(90deg, #3b82f6, #6366f1, #8b5cf6);
z-index: 10000;
transition: width 0.3s ease;
}
</style>
</head>
<body class="text-slate-800">
<!-- 加载进度条 -->
<div id="loading-progress" class="loading-progress" style="width: 0%;"></div>
<!-- 骨架屏加载器 -->
<div id="skeleton-loader" class="skeleton-loader">
<div class="skeleton-header">
<div class="skeleton-logo"></div>
<div class="skeleton-title"></div>
</div>
<div class="skeleton-hero">
<div class="skeleton-hero-title"></div>
<div class="skeleton-hero-desc"></div>
<div class="skeleton-hero-desc" style="width: 360px;"></div>
<div class="skeleton-search"></div>
</div>
<div class="skeleton-content">
<div class="skeleton-section-title"></div>
<div class="skeleton-cards">
<div class="skeleton-card">
<div class="skeleton-card-icon"></div>
<div class="skeleton-card-title"></div>
<div class="skeleton-card-desc"></div>
<div class="skeleton-card-desc"></div>
</div>
<div class="skeleton-card">
<div class="skeleton-card-icon"></div>
<div class="skeleton-card-title"></div>
<div class="skeleton-card-desc"></div>
<div class="skeleton-card-desc"></div>
</div>
<div class="skeleton-card">
<div class="skeleton-card-icon"></div>
<div class="skeleton-card-title"></div>
<div class="skeleton-card-desc"></div>
<div class="skeleton-card-desc"></div>
</div>
<div class="skeleton-card">
<div class="skeleton-card-icon"></div>
<div class="skeleton-card-title"></div>
<div class="skeleton-card-desc"></div>
<div class="skeleton-card-desc"></div>
</div>
</div>
</div>
</div>
<div id="app" class="min-h-screen flex flex-col">
<!-- 左侧浮动导航栏 -->
<nav v-if="!showResultMode" class="side-nav" :class="{ collapsed: isNavCollapsed }">
<!-- 折叠/展开按钮 -->
<div class="side-nav-toggle" @click="toggleNav" :title="isNavCollapsed ? '展开导航' : '折叠导航'">
<i class="fa-solid fa-chevron-left w-4 h-4"></i>
</div>
<!-- 导航项列表 -->
<a v-for="cat in categories" :key="cat.id" :href="'#section-' + cat.id" class="side-nav-item"
:class="{ active: activeSection === cat.id }" @click.prevent="scrollToSection(cat.id)"
:title="cat.name + (cat.experimental ? '(试验性新功能)' : '')">
<i :class="[cat.icon, 'text-lg fa-fw']"></i>
<span class="nav-text">{{ cat.shortName || cat.name }}<span v-if="cat.experimental" class="text-amber-600 font-bold">·试</span></span>
</a>
</nav>
<!-- 顶部导航 -->
<nav class="bg-white/80 backdrop-blur-md sticky top-0 z-50 border-b border-slate-200/80">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16 items-center">
<div class="flex items-center gap-2 cursor-pointer" @click="resetFilters">
<svg width="36" height="36" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg" class="flex-shrink-0">
<rect width="120" height="120" rx="26" fill="url(#logo-grad)"/>
<text x="60" y="68" text-anchor="middle" dominant-baseline="central" fill="white" font-family="ui-monospace,SFMono-Regular,'SF Mono',Menlo,monospace" font-weight="800" font-size="40"><100></text>
<defs><linearGradient id="logo-grad" x1="0" y1="0" x2="120" y2="120"><stop stop-color="#3B82F6"/><stop offset="1" stop-color="#4F46E5"/></linearGradient></defs>
</svg>
<span class="font-bold text-xl tracking-tight text-slate-900">100html.com</span>
<!-- Total Tools Badge -->
<span
class="ml-2 bg-blue-100 text-blue-700 text-xs font-bold px-2.5 py-1 rounded-full border border-blue-200"
title="已收录工具总数">
{{ totalTools }}
</span>
</div>
<!-- Quick Start & Settings -->
<div class="flex items-center gap-3 sm:gap-4 relative">
<a href="https://github.com/loresun/100html" target="_blank" rel="noopener"
class="flex items-center gap-1.5 text-slate-500 hover:text-slate-900 transition px-2 py-1.5 rounded-lg hover:bg-slate-50"
title="GitHub 开源仓库">
<i class="fa-brands fa-github h-5 w-5 text-lg"></i>
<span class="hidden sm:inline text-xs font-medium">GitHub</span>
</a>
<a href="https://ai1.xin/" target="_blank" rel="noopener"
class="flex items-center gap-1.5 text-slate-500 hover:text-indigo-600 transition px-2 py-1.5 rounded-lg hover:bg-slate-50"
title="更多 AI 工具导航 · ai1.xin">
<i class="fa-solid fa-layer-group h-5 w-5 text-lg"></i>
<span class="hidden sm:inline text-xs font-medium">更多工具</span>
</a>
<a href="project_for_agents.html"
class="hidden sm:inline-flex items-center text-xs font-medium text-slate-500 hover:text-slate-800 border border-slate-200 rounded-lg px-2.5 py-1.5 hover:bg-slate-50 transition"
title="供 AI 编程助手阅读的仓库结构与约定(低样式 HTML)">
<i class="fa-solid fa-robot mr-1.5 opacity-70"></i> Agent 导读
</a>
<div class="group relative">
<button
class="flex items-center gap-2 text-slate-600 hover:text-blue-600 transition px-3 py-2 rounded-lg hover:bg-slate-50">
<i class="fa-solid fa-rocket h-5 w-5 text-blue-500"></i>
<span class="font-medium text-sm">快速开始</span>
</button>
<!-- Hover Popup -->
<div
class="hover-dropdown absolute right-0 top-full mt-2 w-72 bg-white rounded-xl shadow-xl border border-slate-100 p-5 z-50 origin-top-right">
<div class="flex items-start gap-3 mb-4">
<div class="p-2 bg-blue-50 rounded-lg text-blue-600 shrink-0">
<i class="fa-solid fa-key w-5 h-5"></i>
</div>
<div>
<h4 class="font-bold text-slate-800 text-sm">配置 API Key</h4>
<p class="text-xs text-slate-500 mt-1 leading-relaxed">请先配置 DeepSeek Key
以使用所有工具。</p>
</div>
</div>
<button @click="showSettings = true"
class="w-full mb-3 bg-slate-900 text-white text-xs font-semibold py-2.5 rounded-lg hover:bg-slate-800 transition flex items-center justify-center gap-2">
<i class="fa-solid fa-cog w-3.5 h-3.5"></i> 打开配置面板
</button>
<div class="text-center pt-2 border-t border-slate-50">
<a href="https://platform.deepseek.com/" target="_blank"
class="text-xs text-blue-500 hover:text-blue-600 hover:underline flex items-center justify-center gap-1">
没有 Key?去官网申请 <i class="fa-solid fa-external-link-alt w-3 h-3"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
<!-- 顶部 Hero 区域 + 搜索 -->
<header class="bg-gradient-to-b from-white to-slate-50 border-b border-slate-200/60 pt-10 pb-8 px-4">
<div class="max-w-5xl mx-auto text-center">
<h1 class="text-4xl md:text-5xl font-black text-slate-900 mb-3 tracking-tight">
100HTML <span class="text-transparent bg-clip-text bg-gradient-to-r from-blue-600 to-indigo-600">AI 工具集</span>
</h1>
<p class="text-sm font-medium text-blue-600/80 mb-4 tracking-wide">
DeepSeek API 驱动 · Vibe Coding · 500+ 工具页面 · 纯 HTML 打开即用
</p>
<p class="text-base text-slate-500 max-w-3xl mx-auto mb-5 leading-relaxed">
本站工具统一使用 <strong class="text-slate-700">DeepSeek</strong>(<code class="text-sm bg-slate-100 px-1 rounded">deepseek-chat</code> / <code class="text-sm bg-slate-100 px-1 rounded">deepseek-reasoner</code>)API 的免费开源 AI 工具箱。
每个工具都是一个独立的 <strong class="text-slate-700">HTML 文件</strong>,无需安装、无需后端,浏览器打开即可使用。
无论你是内容创作者、职场人、学生还是开发者,都能找到趁手的 <strong class="text-slate-700">AI Agent Skills</strong>。
支持 <strong class="text-slate-700">Vibe Coding</strong> 方式,学习、模仿、改造、创造你自己的 AI 工具和产品。
</p>
<!-- 亮点标签 -->
<div class="flex flex-wrap justify-center gap-2 mb-6">
<span class="inline-flex items-center gap-1.5 px-3 py-1.5 bg-blue-50 text-blue-700 text-xs font-medium rounded-full border border-blue-100">
<i class="fa-solid fa-bolt"></i> 免费开源
</span>
<span class="inline-flex items-center gap-1.5 px-3 py-1.5 bg-green-50 text-green-700 text-xs font-medium rounded-full border border-green-100">
<i class="fa-solid fa-code"></i> 纯 HTML 无需安装
</span>
<span class="inline-flex items-center gap-1.5 px-3 py-1.5 bg-purple-50 text-purple-700 text-xs font-medium rounded-full border border-purple-100">
<i class="fa-solid fa-robot"></i> DeepSeek API
</span>
<span class="inline-flex items-center gap-1.5 px-3 py-1.5 bg-amber-50 text-amber-700 text-xs font-medium rounded-full border border-amber-100">
<i class="fa-solid fa-wand-magic-sparkles"></i> Vibe Coding
</span>
</div>
<!-- 新手指引 / Agent 导读 / GitHub 入口 -->
<div class="mb-8 flex flex-wrap justify-center gap-3">
<a href="https://github.com/loresun/100html" target="_blank" rel="noopener"
class="inline-flex items-center gap-2 px-5 py-2.5 bg-slate-900 text-white rounded-full text-sm font-medium hover:bg-slate-800 shadow-sm hover:shadow-md transition-all"
title="GitHub 开源仓库 · 500+ AI 工具与页面">
<i class="fa-brands fa-github text-base"></i>
<span>GitHub · 开源仓库</span>
<i class="fa-solid fa-star text-amber-400 text-xs"></i>
</a>
<a href="https://ai1.xin/" target="_blank" rel="noopener"
class="inline-flex items-center gap-2 px-5 py-2.5 bg-indigo-600 text-white rounded-full text-sm font-medium hover:bg-indigo-700 shadow-sm hover:shadow-md transition-all"
title="更多 AI 工具导航">
<i class="fa-solid fa-layer-group text-base"></i>
<span>更多工具</span>
</a>
<a href="project_for_agents.html"
class="inline-flex items-center gap-2 px-5 py-2.5 bg-slate-50 border border-slate-200 rounded-full text-sm text-slate-700 hover:bg-slate-100 hover:border-slate-300 transition"
title="给 Cursor / Copilot 等:一页看懂仓库目录与硬约束">
<i class="fa-solid fa-file-code text-slate-500"></i>
<span><strong class="font-semibold">Agent 导读</strong><span class="text-slate-500 font-normal"> · 机器可读项目说明</span></span>
</a>
<a href="tools/ai_basics/guide.html"
class="group relative inline-flex items-center gap-2 px-6 py-2.5 bg-white border border-purple-200 rounded-full shadow-sm hover:shadow-md hover:border-purple-300 transition-all duration-300">
<span
class="absolute inset-0 rounded-full bg-gradient-to-r from-purple-50 to-pink-50 opacity-0 group-hover:opacity-100 transition-opacity duration-300"></span>
<div class="relative flex items-center gap-2">
<span class="flex h-2 w-2 relative">
<span
class="animate-ping absolute inline-flex h-full w-full rounded-full bg-purple-400 opacity-75"></span>
<span class="relative inline-flex rounded-full h-2 w-2 bg-purple-500"></span>
</span>
<span
class="text-slate-700 font-medium text-sm group-hover:text-purple-700 transition-colors">
新手必读:<span class="font-bold">DeepSeek 配置 · 使用步骤 · Vibe Coding</span>
</span>
<i
class="fa-solid fa-arrow-right w-4 h-4 text-slate-400 group-hover:text-purple-500 transition-colors group-hover:translate-x-0.5 transform"></i>
</div>
</a>
</div>
<!-- Quick Start Moved to Header -->
<!-- 搜索框 -->
<div class="max-w-xl mx-auto mb-6">
<div class="search-box rounded-2xl px-5 py-3 flex items-center gap-3">
<i class="fa-solid fa-magnifying-glass h-5 w-5 text-slate-400"></i>
<input type="text" v-model="searchQuery" @input="handleSearch" placeholder="搜索工具名称、功能描述..."
class="flex-1 bg-transparent outline-none text-slate-700 placeholder-slate-400">
<button v-if="searchQuery" @click="clearSearch"
class="text-slate-400 hover:text-slate-600 transition">
<i class="fa-solid fa-times h-4 w-4"></i>
</button>
<kbd class="hidden sm:inline-block px-2 py-1 text-xs bg-slate-100 text-slate-500 rounded">
{{ isMac ? '⌘' : 'Ctrl' }} + K </kbd>
</div>
</div> <!-- 快捷分类筛选 -->
<div class="flex flex-wrap justify-center gap-2 max-w-4xl mx-auto mb-3"> <button
@click="setFilter('all')"
:class="['filter-btn px-4 py-2 rounded-full text-sm font-medium transition', activeFilter === 'all' && !activeTag ? 'active' : 'text-slate-600 hover:text-slate-800']">
全部 </button> <button v-for="cat in categories" :key="cat.id" @click="setFilter(cat.id)"
:class="['filter-btn px-4 py-2 rounded-full text-sm font-medium transition', activeFilter === cat.id && !activeTag ? 'active' : 'text-slate-600 hover:text-slate-800']"
:title="cat.experimental ? '试验性新功能,能力可能调整' : ''">
{{ cat.shortName || cat.name }}<span v-if="cat.experimental" class="text-amber-600 text-xs font-bold ml-0.5">试</span>
</button>
</div>
<!-- 平台标签筛选 -->
<div class="flex flex-wrap justify-center gap-2 max-w-4xl mx-auto">
<span class="text-xs text-slate-400 mr-1 self-center">按平台:</span>
<button v-for="tag in platformTags" :key="tag.id" @click="setTagFilter(tag.id)"
:class="['px-3 py-1.5 rounded-full text-xs font-medium transition border',
activeTag === tag.id
? 'bg-slate-800 text-white border-slate-800'
: 'bg-white text-slate-600 border-slate-200 hover:border-slate-400 hover:text-slate-800']">
{{ tag.icon }} {{ tag.name }}
</button>
<button v-if="activeTag" @click="clearTagFilter"
class="px-2 py-1.5 text-xs text-slate-400 hover:text-slate-600 transition">
<i class="fa-solid fa-times w-3 h-3 inline"></i> 清除
</button>
</div>
</div>
</header>
<!-- 搜索/标签结果状态 -->
<div v-if="showResultMode && filteredTools.length > 0" class="max-w-7xl mx-auto px-4 pt-6">
<p class="text-slate-500 text-sm flex items-center gap-2">
<span v-if="activeTag"
class="inline-flex items-center gap-1 px-2 py-0.5 bg-slate-100 rounded-full text-slate-700 font-medium">
{{ platformTags.find(t => t.id === activeTag)?.icon }} {{ activeTag }}
</span>
<span>找到 <span class="font-semibold text-slate-700">{{ filteredTools.length }}</span> 个相关工具</span>
</p>
</div>
<!-- 空搜索结果 -->
<div v-if="showResultMode && filteredTools.length === 0"
class="flex-grow flex items-center justify-center p-12">
<div class="text-center">
<div class="float-animation mb-6">
<i class="fa-solid fa-magnifying-glass-xmark h-16 w-16 text-slate-300 mx-auto"></i>
</div>
<h3 class="text-xl font-semibold text-slate-700 mb-2">未找到相关工具</h3>
<p class="text-slate-500 mb-4">尝试更换关键词或平台标签,或浏览全部工具</p>
<button @click="resetFilters"
class="px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition">
查看全部工具
</button>
</div>
</div>
<!-- 工具卡片网格 -->
<main v-if="!showResultMode || filteredTools.length > 0" class="flex-grow p-6 md:p-12 space-y-14">
<!-- 搜索/标签结果模式 - 平铺显示 -->
<section v-if="showResultMode" class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<a v-for="tool in filteredTools" :key="tool.href" :href="tool.href" class="block group">
<div
class="bg-white rounded-2xl p-6 h-full border border-slate-200 hover:border-blue-200 hover-card flex flex-col">
<div class="flex items-start justify-between mb-4">
<div :class="['w-12 h-12 rounded-xl flex items-center justify-center transition-colors', tool.iconBg, tool.iconColor, 'group-hover:bg-opacity-100']"
:style="{ '--hover-bg': tool.hoverBg }">
<i :class="[tool.icon, 'text-xl fa-fw']"></i>
</div>
<span v-if="tool.isNew"
class="bg-green-100 text-green-700 text-xs font-bold px-2 py-1 rounded-md">NEW</span>
</div>
<h3 class="text-xl font-bold text-slate-900 mb-2 group-hover:text-blue-600 transition-colors"
v-html="highlightText(tool.name)"></h3>
<p class="text-slate-500 text-sm leading-relaxed flex-grow"
v-html="highlightText(tool.desc)"></p>
<!-- 平台标签 -->
<div v-if="tool.tags && tool.tags.length" class="mt-3 flex flex-wrap gap-1">
<span v-for="tag in tool.tags.slice(0, 3)" :key="tag"
class="text-[10px] px-1.5 py-0.5 bg-slate-100 text-slate-500 rounded">
{{ tag }}
</span>
<span v-if="tool.tags.length > 3" class="text-[10px] px-1.5 py-0.5 text-slate-400">
+{{ tool.tags.length - 3 }}
</span>
</div>
<div class="mt-4 flex items-center text-blue-600 font-medium text-sm">
立即使用 <i
class="fa-solid fa-arrow-right w-4 h-4 ml-1 group-hover:translate-x-1 transition-transform"></i>
</div>
</div>
</a>
</div>
</section>
<!-- 正常分类模式 -->
<template v-else>
<section v-for="cat in displayCategories" :key="cat.id" :id="'section-' + cat.id"
class="max-w-7xl mx-auto scroll-mt-20">
<div class="flex items-center gap-3 mb-8">
<div
:class="['w-10 h-10 rounded-lg flex items-center justify-center', cat.bgColor, cat.textColor]">
<i :class="[cat.icon, 'text-xl fa-fw']"></i>
</div>
<div class="min-w-0 flex-1">
<div class="flex flex-wrap items-center gap-2 gap-y-1">
<h2 class="section-title text-2xl font-bold text-slate-800"
:style="{ color: cat.titleColor }">{{ cat.name }}</h2>
<span v-if="cat.experimental"
class="inline-flex items-center shrink-0 text-xs font-semibold px-2.5 py-0.5 rounded-full bg-amber-100 text-amber-900 border border-amber-200/80">
试验性新功能
</span>
</div>
<p class="text-sm text-slate-500 mt-1">{{ cat.desc }}</p>
<p v-if="cat.experimental" class="text-xs text-amber-800/90 mt-2 leading-relaxed max-w-3xl">
本分类为近期试验能力合集:依赖第三方接口(如 Edge 朗读、Gemini、Pollinations 等),行为与可用性可能随环境变化;欢迎试用并反馈问题,我们会持续迭代或并入正式工具线。
</p>
</div>
</div>
<!-- 普通工具卡片 -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<a v-for="tool in cat.tools" :key="tool.href" :href="tool.href" class="block group">
<div class="bg-white rounded-2xl p-6 h-full border border-slate-200 hover-card flex flex-col"
:class="'hover:border-' + tool.borderColor">
<div class="flex items-start justify-between mb-4">
<div
:class="['w-12 h-12 rounded-xl flex items-center justify-center transition-colors', tool.iconBg, tool.iconColor]">
<i :class="[tool.icon, 'text-xl fa-fw']"></i>
</div>
<span v-if="tool.isNew"
:class="['text-xs font-bold px-2 py-1 rounded-md', tool.badgeStyle || 'bg-green-100 text-green-700']">NEW</span>
</div>
<h3
:class="['text-xl font-bold text-slate-900 mb-2 transition-colors', 'group-hover:' + tool.hoverTextColor]">
{{ tool.name }}
</h3>
<p class="text-slate-500 text-sm leading-relaxed flex-grow">{{ tool.desc }}</p>
<!-- 平台标签 -->
<div v-if="tool.tags && tool.tags.length" class="mt-3 flex flex-wrap gap-1">
<span v-for="tag in tool.tags.slice(0, 3)" :key="tag"
class="text-[10px] px-1.5 py-0.5 bg-slate-100 text-slate-500 rounded">
{{ tag }}
</span>
<span v-if="tool.tags.length > 3" class="text-[10px] px-1.5 py-0.5 text-slate-400">
+{{ tool.tags.length - 3 }}
</span>
</div>
<div :class="['mt-4 flex items-center font-medium text-sm', tool.linkColor]">
立即使用 <i
class="fa-solid fa-arrow-right w-4 h-4 ml-1 group-hover:translate-x-1 transition-transform"></i>
</div>
</div>
</a>
</div>
</section>
</template>
</main>
<footer class="border-t border-slate-200/60 bg-white/50">
<!-- SEO 友好的底部内容区 -->
<div class="max-w-5xl mx-auto px-4 py-10">
<!-- 关于区域 -->
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-8">
<div>
<h3 class="font-bold text-slate-700 mb-3 text-sm">关于 100HTML</h3>
<p class="text-xs text-slate-500 leading-relaxed">
100HTML.com 是一个免费开源的 AI 工具集,通过 DeepSeek API 提供对话与推理能力。
每个工具都是独立的 HTML 文件,无需后端服务器,打开浏览器即可使用。
适用于内容创作、职场办公、学习成长、Vibe Coding 等多种场景。
</p>
<div class="flex items-center gap-4 mt-3">
<a href="https://github.com/loresun/100html" target="_blank" rel="noopener"
class="inline-flex items-center gap-1.5 text-xs text-slate-600 hover:text-slate-900 transition">
<i class="fa-brands fa-github text-base"></i> GitHub 开源仓库
</a>
<a href="project_for_agents.html"
class="inline-flex items-center gap-1 text-xs text-blue-600 hover:underline">
<i class="fa-solid fa-robot opacity-70"></i> Agent 导读
</a>
</div>
</div>
<div>
<h3 class="font-bold text-slate-700 mb-3 text-sm">热门工具</h3>
<ul class="space-y-1.5 text-xs text-slate-500">
<li><a href="deep_writer.html" class="hover:text-blue-600 transition">AI 深度写作</a></li>
<li><a href="xhs_generator.html" class="hover:text-blue-600 transition">小红书文案生成器</a></li>
<li><a href="video_script_generator.html" class="hover:text-blue-600 transition">视频脚本生成</a></li>
<li><a href="prompt_optimizer.html" class="hover:text-blue-600 transition">Prompt 优化器</a></li>
<li><a href="model_arena.html" class="hover:text-blue-600 transition">大模型竞技场</a></li>
<li><a href="llm_playground.html" class="hover:text-blue-600 transition">LLM Playground</a></li>
</ul>
</div>
<div>
<h3 class="font-bold text-slate-700 mb-3 text-sm">关键词</h3>
<div class="flex flex-wrap gap-1.5">
<span class="px-2 py-1 bg-slate-100 text-slate-500 text-xs rounded">DeepSeek HTML</span>
<span class="px-2 py-1 bg-slate-100 text-slate-500 text-xs rounded">DeepSeek API</span>
<span class="px-2 py-1 bg-slate-100 text-slate-500 text-xs rounded">Vibe Coding</span>
<span class="px-2 py-1 bg-slate-100 text-slate-500 text-xs rounded">AI Agent</span>
<span class="px-2 py-1 bg-slate-100 text-slate-500 text-xs rounded">Agent Skills</span>
<span class="px-2 py-1 bg-slate-100 text-slate-500 text-xs rounded">免费 AI 工具</span>
<span class="px-2 py-1 bg-slate-100 text-slate-500 text-xs rounded">HTML 工具</span>
<span class="px-2 py-1 bg-slate-100 text-slate-500 text-xs rounded">AI 写作</span>
<span class="px-2 py-1 bg-slate-100 text-slate-500 text-xs rounded">AI 内容创作</span>
<span class="px-2 py-1 bg-slate-100 text-slate-500 text-xs rounded">纯前端 AI</span>
</div>
</div>
</div>
<!-- 版权 -->
<div class="pt-6 border-t border-slate-200/60 text-center text-slate-400 text-xs">
<p>© 2025-2026 <a href="https://100html.com/" class="hover:text-blue-500 transition">100HTML.com</a> — 免费开源 AI HTML 工具集 | Local-first & Privacy-focused</p>