-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html.bak2
More file actions
1343 lines (1168 loc) · 43.4 KB
/
index.html.bak2
File metadata and controls
1343 lines (1168 loc) · 43.4 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MaviProject | 技术博客 - 计算机视觉与AI</title>
<meta name="description" content="MaviProject技术博客,专注于计算机视觉、目标检测、大语言模型的技术分享与实践">
<!-- 字体 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400&display=swap" rel="stylesheet">
<!-- 图标 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
/* 渐变主题色 */
--gradient-1: #6366f1;
--gradient-2: #8b5cf6;
--gradient-3: #d946ef;
--gradient-4: #06b6d4;
--dark: #0f172a;
--dark-light: #1e293b;
--light: #f8fafc;
--gray: #94a3b8;
--gray-light: #e2e8f0;
--card-bg: rgba(30, 41, 59, 0.8);
--glass: rgba(255, 255, 255, 0.05);
--glass-border: rgba(255, 255, 255, 0.1);
--shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
--transition: all 0.3s ease;
}
/* 主题切换变量 */
[data-theme="light"] {
--dark: #f8fafc;
--dark-light: #e2e8f0;
--light: #0f172a;
--gray: #64748b;
--gray-light: #1e293b;
--card-bg: rgba(255, 255, 255, 0.9);
--glass: rgba(0, 0, 0, 0.05);
--glass-border: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] body {
background-image:
radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 25%),
radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 25%),
radial-gradient(circle at 50% 50%, rgba(217, 70, 239, 0.05) 0%, transparent 30%);
}
[data-theme="light"] .tech-stack-section {
background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(226, 232, 240, 0.9));
}
[data-theme="light"] footer {
background: var(--dark-light);
}
/* 图片懒加载样式 */
img[data-src] {
opacity: 0;
transition: opacity 0.3s ease;
}
img.loaded {
opacity: 1;
}
/* 阅读进度条容器样式 */
#reading-progress-bar {
box-shadow: 0 2px 5px rgba(99, 102, 241, 0.3);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--dark);
color: var(--light);
line-height: 1.6;
overflow-x: hidden;
background-image:
radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 25%),
radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 25%),
radial-gradient(circle at 50% 50%, rgba(217, 70, 239, 0.1) 0%, transparent 30%);
min-height: 100vh;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
/* 头部导航 */
header {
position: fixed;
top: 0;
width: 100%;
background: var(--glass);
backdrop-filter: blur(15px);
border-bottom: 1px solid var(--glass-border);
z-index: 1000;
padding: 1rem 0;
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
}
.logo-img {
width: 40px;
height: 40px;
border-radius: 10px;
object-fit: cover;
border: 2px solid var(--glass-border);
}
.logo-text {
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(90deg, var(--gradient-1), var(--gradient-3));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.nav-links {
display: flex;
gap: 2rem;
align-items: center;
}
.nav-links a {
color: var(--gray);
text-decoration: none;
font-weight: 500;
transition: var(--transition);
position: relative;
}
.nav-links a:hover {
color: var(--light);
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--gradient-1), var(--gradient-3));
transition: var(--transition);
}
.nav-links a:hover::after {
width: 100%;
}
.mobile-menu-btn {
display: none;
background: none;
border: none;
color: var(--light);
font-size: 1.5rem;
cursor: pointer;
}
/* 搜索栏 */
.search-container {
margin: 120px auto 40px;
max-width: 700px;
position: relative;
}
.search-box {
width: 100%;
padding: 1.2rem 1.5rem 1.2rem 3.5rem;
background: var(--card-bg);
border: 2px solid var(--glass-border);
border-radius: 15px;
color: var(--light);
font-size: 1.1rem;
font-family: 'Inter', sans-serif;
backdrop-filter: blur(10px);
transition: var(--transition);
}
.search-box:focus {
outline: none;
border-color: var(--gradient-1);
box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}
.search-icon {
position: absolute;
left: 1.2rem;
top: 50%;
transform: translateY(-50%);
color: var(--gray);
font-size: 1.2rem;
}
/* 标签云 */
.tags-section {
margin: 3rem auto;
max-width: 1000px;
}
.section-title {
font-size: 1.8rem;
margin-bottom: 1.5rem;
display: flex;
align-items: center;
gap: 10px;
}
.section-title i {
color: var(--gradient-1);
}
.tags-cloud {
display: flex;
flex-wrap: wrap;
gap: 12px;
justify-content: center;
}
.tag {
background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
color: white;
padding: 0.6rem 1.2rem;
border-radius: 50px;
font-size: 0.9rem;
font-weight: 500;
text-decoration: none;
transition: var(--transition);
border: none;
cursor: pointer;
}
.tag:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}
.tag.tag-secondary {
background: linear-gradient(135deg, var(--gradient-3), var(--gradient-4));
}
/* 瀑布流网格 */
.masonry-section {
padding: 40px 0 60px;
}
.masonry-grid {
column-count: 3;
column-gap: 30px;
}
@media (max-width: 1100px) {
.masonry-grid {
column-count: 2;
}
}
@media (max-width: 768px) {
.masonry-grid {
column-count: 1;
}
}
.masonry-item {
break-inside: avoid;
margin-bottom: 30px;
background: var(--card-bg);
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
border: 1px solid var(--glass-border);
backdrop-filter: blur(10px);
}
.masonry-item:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
border-color: var(--gradient-1);
}
.card-image {
height: 180px;
width: 100%;
object-fit: cover;
background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 2.5rem;
}
.card-content {
padding: 1.5rem;
}
.card-category {
display: inline-block;
background: rgba(99, 102, 241, 0.2);
color: var(--gradient-1);
padding: 0.3rem 0.8rem;
border-radius: 50px;
font-size: 0.8rem;
font-weight: 600;
margin-bottom: 0.8rem;
}
.card-title {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 0.8rem;
line-height: 1.4;
}
.card-excerpt {
color: var(--gray);
font-size: 0.95rem;
margin-bottom: 1.2rem;
line-height: 1.6;
}
.card-meta {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.85rem;
color: var(--gray);
}
.card-link {
color: var(--gradient-4);
text-decoration: none;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 5px;
transition: var(--transition);
}
.card-link:hover {
color: var(--gradient-1);
gap: 8px;
}
/* 项目展示 */
.projects-section {
padding: 60px 0;
background: rgba(15, 23, 42, 0.5);
margin: 40px 0;
border-radius: 20px;
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.project-card {
background: var(--card-bg);
border-radius: 15px;
padding: 1.8rem;
border: 1px solid var(--glass-border);
transition: var(--transition);
}
.project-card:hover {
transform: translateY(-5px);
border-color: var(--gradient-2);
box-shadow: var(--shadow-lg);
}
.project-icon {
font-size: 2rem;
color: var(--gradient-1);
margin-bottom: 1rem;
}
.project-title {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 0.8rem;
}
.project-desc {
color: var(--gray);
font-size: 0.95rem;
margin-bottom: 1.2rem;
line-height: 1.6;
}
.project-links {
display: flex;
gap: 1rem;
}
.project-link {
color: var(--gradient-4);
text-decoration: none;
font-size: 0.9rem;
display: inline-flex;
align-items: center;
gap: 5px;
transition: var(--transition);
}
.project-link:hover {
color: var(--gradient-1);
}
/* 技术栈展示 */
.tech-stack-section {
padding: 60px 0;
background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.9));
border-radius: 20px;
margin: 40px 0;
}
.tech-category {
margin-bottom: 2.5rem;
}
.category-title {
font-size: 1.4rem;
margin-bottom: 1.5rem;
color: var(--light);
display: flex;
align-items: center;
gap: 10px;
}
.tech-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 1.2rem;
}
@media (max-width: 768px) {
.tech-grid {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 1rem;
}
}
.tech-item {
background: var(--card-bg);
border-radius: 12px;
padding: 1.2rem;
border: 1px solid var(--glass-border);
transition: var(--transition);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.tech-item:hover {
transform: translateY(-5px);
border-color: var(--gradient-2);
box-shadow: var(--shadow);
}
.tech-icon {
font-size: 2.2rem;
margin-bottom: 0.8rem;
}
.tech-name {
font-weight: 600;
margin-bottom: 0.8rem;
font-size: 1rem;
}
.skill-bar {
width: 100%;
height: 6px;
background: var(--dark-light);
border-radius: 3px;
overflow: hidden;
margin-top: auto;
}
.skill-level {
height: 100%;
border-radius: 3px;
transition: width 1.5s ease;
}
/* 移动端优化 */
@media (max-width: 576px) {
.logo-text {
font-size: 1.2rem;
}
.logo-img {
width: 32px;
height: 32px;
}
.search-box {
padding: 1rem 1.2rem 1rem 3rem;
font-size: 1rem;
}
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
.masonry-item, .project-card {
margin-bottom: 20px;
}
.card-content, .project-card {
padding: 1.2rem;
}
.footer-content {
gap: 1.5rem;
}
}
/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
.masonry-item:hover, .project-card:hover, .tech-item:hover {
transform: none;
}
.nav-links a::after, .footer-links a:hover {
display: none;
}
}
/* 评论系统 */
.comments-section {
padding: 60px 0;
margin-top: 40px;
border-top: 1px solid var(--glass-border);
}
.giscus-container {
background: var(--card-bg);
border-radius: 15px;
padding: 2rem;
border: 1px solid var(--glass-border);
}
/* RSS订阅按钮 */
.rss-button {
display: inline-flex;
align-items: center;
gap: 8px;
background: linear-gradient(135deg, var(--gradient-3), var(--gradient-4));
color: white;
padding: 0.8rem 1.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 500;
transition: var(--transition);
margin-top: 1rem;
}
.rss-button:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(217, 70, 239, 0.4);
}
/* 页脚 */
footer {
background: var(--dark-light);
padding: 4rem 0 2rem;
margin-top: 4rem;
border-top: 1px solid var(--glass-border);
}
.footer-content {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 3rem;
margin-bottom: 3rem;
}
@media (max-width: 768px) {
.footer-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: var(--dark-light);
flex-direction: column;
padding: 1rem;
border-top: 1px solid var(--glass-border);
}
.mobile-menu-btn {
display: block;
}
}
.footer-logo {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 1rem;
}
.footer-logo-img {
width: 50px;
height: 50px;
border-radius: 12px;
object-fit: cover;
border: 2px solid var(--glass-border);
}
.footer-logo-text {
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(90deg, var(--gradient-1), var(--gradient-3));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.footer-desc {
color: var(--gray);
line-height: 1.7;
margin-bottom: 1.5rem;
}
.social-links {
display: flex;
gap: 1rem;
}
.social-link {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: var(--glass);
border-radius: 50%;
color: var(--gray);
font-size: 1.2rem;
transition: var(--transition);
text-decoration: none;
}
.social-link:hover {
background: var(--gradient-1);
color: white;
transform: translateY(-3px);
}
.footer-links h3 {
font-size: 1.2rem;
margin-bottom: 1.5rem;
color: var(--light);
}
.footer-links ul {
list-style: none;
}
.footer-links li {
margin-bottom: 0.8rem;
}
.footer-links a {
color: var(--gray);
text-decoration: none;
transition: var(--transition);
}
.footer-links a:hover {
color: var(--gradient-1);
padding-left: 5px;
}
.copyright {
text-align: center;
color: var(--gray);
font-size: 0.9rem;
padding-top: 2rem;
border-top: 1px solid var(--glass-border);
}
/* 搜索结果显示 */
#searchResults {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: var(--dark-light);
border-radius: 0 0 15px 15px;
border: 1px solid var(--glass-border);
border-top: none;
max-height: 400px;
overflow-y: auto;
z-index: 100;
}
.search-result-item {
padding: 1rem 1.5rem;
border-bottom: 1px solid var(--glass-border);
cursor: pointer;
transition: var(--transition);
}
.search-result-item:hover {
background: rgba(99, 102, 241, 0.1);
}
.search-result-title {
font-weight: 500;
margin-bottom: 0.3rem;
color: var(--light);
}
.search-result-excerpt {
font-size: 0.9rem;
color: var(--gray);
}
.no-results {
padding: 1.5rem;
text-align: center;
color: var(--gray);
}
/* 动画 */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fadeInUp {
animation: fadeInUp 0.6s ease forwards;
}
</style>
</head>
<body>
<!-- 头部导航 -->
<header>
<div class="container nav-container">
<a href="/" class="logo">
<img src="/assets/image/org-avatar.png" alt="MaviProject Logo" class="logo-img">
<span class="logo-text">MaviProject</span>
</a>
<nav class="nav-links">
<a href="#articles">文章</a>
<a href="#projects">项目</a>
<a href="/About">关于</a>
<a href="/Guess">随想</a>
<a href="https://github.com/MaviProject" target="_blank">
<i class="fab fa-github"></i> GitHub
</a>
</nav>
<button class="mobile-menu-btn" id="mobileMenuBtn">
<i class="fas fa-bars"></i>
</button>
</div>
</header>
<!-- 搜索栏 -->
<div class="container search-container">
<div class="search-wrapper">
<i class="fas fa-search search-icon"></i>
<input type="text" id="searchInput" class="search-box" placeholder="搜索文章、技术关键词...">
<div id="searchResults" class="search-results"></div>
</div>
</div>
<!-- 标签云 -->
<div class="container tags-section">
<h2 class="section-title">
<i class="fas fa-tags"></i>
热门标签
</h2>
<div class="tags-cloud" id="tagsCloud">
<!-- 标签将通过JavaScript动态生成 -->
</div>
</div>
<!-- 瀑布流文章网格 -->
<section class="masonry-section" id="articles">
<div class="container">
<h2 class="section-title" style="margin-left: 0;">
<i class="fas fa-newspaper"></i>
最新文章
</h2>
<div class="masonry-grid" id="articleGrid">
<!-- 文章卡片将通过JavaScript动态加载 -->
</div>
</div>
</section>
<!-- 项目展示 -->
<section class="projects-section" id="projects">
<div class="container">
<h2 class="section-title" style="margin-left: 0;">
<i class="fas fa-code-branch"></i>
开源项目
</h2>
<div class="projects-grid" id="projectsGrid">
<!-- 项目卡片将通过JavaScript动态加载 -->
</div>
</div>
</section>
<!-- 技术栈展示 -->
<section class="tech-stack-section" id="tech-stack">
<div class="container">
<h2 class="section-title" style="margin-left: 0;">
<i class="fas fa-layer-group"></i>
技术栈与技能
</h2>
<div id="techStackContainer">
<!-- 技术栈将通过JavaScript动态加载 -->
</div>
</div>
</section>
<!-- RSS订阅 -->
<div class="container" style="text-align: center; padding: 40px 0;">
<a href="/feed.xml" class="rss-button">
<i class="fas fa-rss"></i>
订阅RSS Feed
</a>
<p style="color: var(--gray); margin-top: 1rem; font-size: 0.9rem;">
获取最新文章更新
</p>
</div>
<!-- 页脚 -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-about">
<div class="footer-logo">
<img src="/assets/image/org-avatar.png" alt="MaviProject Logo" class="footer-logo-img">
<span class="footer-logo-text">MaviProject</span>
</div>
<p class="footer-desc">
一个专注于计算机视觉、目标检测与大语言模型的技术博客。
记录学习历程,分享技术实践,构建开源项目。
</p>
<div class="social-links">
<a href="https://github.com/MaviProject" class="social-link" target="_blank" title="GitHub">
<i class="fab fa-github"></i>
</a>
<a href="#" class="social-link" title="RSS订阅">
<i class="fas fa-rss"></i>
</a>
<a href="mailto:" class="social-link" title="电子邮件">
<i class="fas fa-envelope"></i>
</a>
</div>
</div>
<div class="footer-links">
<h3>快速链接</h3>
<ul>
<li><a href="#articles">所有文章</a></li>
<li><a href="#projects">开源项目</a></li>
<li><a href="/About">关于作者</a></li>
<li><a href="/Guess">技术随想</a></li>
<li><a href="https://github.com/MaviProject/MaviProject.github.io" target="_blank">博客源码</a></li>
</ul>
</div>
<div class="footer-links">
<h3>技术分类</h3>
<ul>
<li><a href="#tag-目标检测">目标检测</a></li>
<li><a href="#tag-YOLO">YOLO系列</a></li>
<li><a href="#tag-深度学习">深度学习</a></li>
<li><a href="#tag-大语言模型">大语言模型</a></li>
<li><a href="#tag-算法">算法实现</a></li>
</ul>
</div>
</div>
<div class="copyright">
<p>© 2023-2024 MaviProject. 本博客内容采用<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/" target="_blank" style="color: var(--gradient-4);"> CC BY-NC-SA 4.0</a>许可协议</p>
<p>Powered by GitHub Pages & Jekyll | 主题设计: 科技渐变风格</p>
</div>
</div>
</footer>
<!-- 博客增强功能 -->
<script src="/assets/js/reading-progress.js"></script>
<script>
// 文章数据
const articles = [
{
id: 1,
title: "目标检测基础知识",
category: "目标检测",
excerpt: "介绍目标检测领域的常用术语、准确率、精确率、召回率等基础概念,帮助理解模型评估指标。",
readTime: "8分钟",
link: "/detection/Basic",
icon: "fas fa-crosshairs",
tags: ["目标检测", "基础知识", "评估指标"]
},
{
id: 2,
title: "IOU损失函数",
category: "目标检测",
excerpt: "深入解析IoU、GIoU、DIoU、CIoU等边界框回归损失函数,对比各自优缺点及实现方式。",
readTime: "12分钟",
link: "/detection/IOU",
icon: "fas fa-search",
tags: ["目标检测", "损失函数", "IoU", "算法"]
},
{
id: 3,
title: "非极大值抑制(NMS)",
category: "目标检测",
excerpt: "详细介绍NMS算法原理、传统实现方法及其在目标检测中的应用,解决重复检测框问题。",
readTime: "10分钟",
link: "/detection/NMS",
icon: "fas fa-filter",
tags: ["目标检测", "NMS", "算法", "后处理"]
},
{
id: 4,
title: "YOLOv5在Ubuntu环境搭建",
category: "YOLO学习",
excerpt: "从系统环境配置、显卡驱动安装到YOLOv5项目部署,详细记录Ubuntu下的完整搭建流程。",
readTime: "15分钟",
link: "/yolo/install",
icon: "fas fa-camera",
tags: ["YOLO", "环境搭建", "Ubuntu", "深度学习"]
},
{