-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
1053 lines (926 loc) · 38.9 KB
/
index.html
File metadata and controls
1053 lines (926 loc) · 38.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>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🎨 Claude Code PPT 设计系统教程</title>
<!-- Reveal.js 5.2.1 CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js@5.2.1/dist/reveal.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js@5.2.1/dist/theme/white.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js@5.2.1/plugin/highlight/monokai.css">
<!-- 字体CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fontsource/inter@5.0.21/index.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fontsource/jetbrains-mono@5.0.21/index.css">
<style>
/* CSS变量系统 */
:root {
/* 语义化色彩系统 */
--keyword-highlight: #e74c3c;
--success-highlight: #27ae60;
--info-highlight: #3498db;
--warning-highlight: #e67e22;
--number-highlight: #f39c12;
--text-primary: #1a1a1a;
--text-secondary: #4a4a4a;
--text-light: #888888;
/* 毛玻璃效果 */
--glass-blur: blur(20px) saturate(120%);
--glass-blur-strong: blur(25px) saturate(140%);
--glass-blur-light: blur(10px) saturate(110%);
--glass-bg: rgba(255, 255, 255, 0.6);
--glass-bg-hover: rgba(255, 255, 255, 0.8);
--glass-border: rgba(255, 255, 255, 0.8);
--glass-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
--glass-inset: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
/* 基础样式重置 */
.reveal {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 32px;
color: var(--text-primary);
}
.reveal .slides section {
max-height: 768px;
overflow: hidden;
text-align: left;
padding: 20px;
position: relative;
}
.reveal .slides section.title-slide {
overflow: visible;
}
/* 字体层级系统 - 768px优化 */
.reveal h1 {
font-size: 2.0em;
margin-bottom: 0.5em;
font-weight: 700;
}
.reveal h2 {
font-size: 1.6em;
margin-bottom: 0.8em;
font-weight: 600;
background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
background-size: 200% 100%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: titleGradientFlow 2s ease-in-out infinite;
text-align: center;
margin-bottom: 1.2em;
}
.reveal h3 {
font-size: 1.2em;
margin-bottom: 0.6em;
font-weight: 600;
}
.reveal h4 {
font-size: 1.0em;
margin-bottom: 0.5em;
font-weight: 500;
}
.reveal p {
font-size: 0.85em;
line-height: 1.6;
margin-bottom: 1em;
}
.reveal li {
font-size: 0.85em;
line-height: 1.5;
margin-bottom: 0.3em;
}
/* 语义化颜色强调 */
.keyword-highlight {
color: var(--keyword-highlight);
font-weight: 600;
}
.success-highlight {
color: var(--success-highlight);
font-weight: 600;
}
.info-highlight {
color: var(--info-highlight);
font-weight: 600;
}
.warning-highlight {
color: var(--warning-highlight);
font-weight: 600;
}
.number-highlight {
color: var(--number-highlight);
font-weight: 700;
font-size: 1.1em;
}
/* 标题页效果 */
.title-slide {
height: 100vh !important;
max-height: none !important;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
overflow: visible;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 40px;
}
.title-container {
position: relative;
z-index: 10;
max-width: 800px;
}
.title-main {
font-size: 3.5em;
font-weight: 700;
margin-bottom: 0.3em;
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24);
background-size: 400% 400%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: gradientShift 1s ease-in-out infinite, titleFloat 2s ease-in-out infinite;
}
.subtitle-main {
font-size: 1.5em;
font-weight: 500;
margin: 0.5em 0;
opacity: 0.95;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
animation: titleFloat 2s ease-in-out infinite 0.5s;
}
.description-main {
font-size: 1.1em;
font-weight: 400;
margin-top: 1em;
opacity: 0.85;
line-height: 1.6;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
animation: titleFloat 2s ease-in-out infinite 1s;
}
/* 标题浮动效果 */
@keyframes titleFloat {
0%,
100% {
transform: translateY(0px);
}
50% {
transform: translateY(-8px);
}
}
@keyframes gradientShift {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@keyframes titleGradientFlow {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
/* 背景装饰 */
.glow-effect {
position: absolute;
top: 50%;
left: 50%;
width: 300px;
height: 300px;
margin: -150px 0 0 -150px;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
animation: pulse 2s ease-in-out infinite;
z-index: 2;
}
.particle {
position: absolute;
width: 6px;
height: 6px;
background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
border-radius: 50%;
animation: particleFloat 2s ease-in-out infinite;
}
.particle:nth-child(1) {
top: 15%;
left: 15%;
animation-delay: 0s;
}
.particle:nth-child(2) {
top: 25%;
right: 15%;
animation-delay: 1s;
}
.particle:nth-child(3) {
bottom: 25%;
left: 25%;
animation-delay: 2s;
}
.particle:nth-child(4) {
bottom: 15%;
right: 25%;
animation-delay: 3s;
}
@keyframes pulse {
0%,
100% {
transform: scale(1);
opacity: 0.3;
}
50% {
transform: scale(1.2);
opacity: 0.6;
}
}
@keyframes particleFloat {
0%,
100% {
transform: translateY(0px) scale(1);
opacity: 0.6;
}
50% {
transform: translateY(-15px) scale(1.1);
opacity: 0.9;
}
}
/* 高级毛玻璃卡片系统 */
.feature-card,
.tech-card,
.stat-card {
background: var(--glass-bg);
backdrop-filter: var(--glass-blur);
border: 1px solid var(--glass-border);
border-radius: 12px;
padding: 16px;
margin-bottom: 16px;
box-shadow: var(--glass-shadow), var(--glass-inset);
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.feature-card:hover,
.tech-card:hover,
.stat-card:hover {
transform: translateY(-5px) scale(1.02);
background: var(--glass-bg-hover);
backdrop-filter: var(--glass-blur-strong);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), var(--glass-inset);
}
/* Shimmer闪光效果 */
.feature-card::before,
.tech-card::before,
.stat-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
opacity: 0;
transition: all 0.3s;
}
.feature-card:hover::before,
.tech-card:hover::before,
.stat-card:hover::before {
animation: shimmer 0.5s ease-in-out;
}
@keyframes shimmer {
0% {
transform: translateX(-100%) translateY(-100%);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
transform: translateX(100%) translateY(100%);
opacity: 0;
}
}
/* 布局组件系统 */
.features-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin: 20px 0;
}
.tech-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 15px;
margin: 20px 0;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 15px;
margin: 20px 0;
}
/* 重点强调框 - 简洁毛玻璃效果 */
.highlight-box {
background: var(--glass-bg);
backdrop-filter: var(--glass-blur);
border: 1px solid var(--glass-border);
border-radius: 16px;
padding: 20px;
margin: 20px 0;
box-shadow: var(--glass-shadow), var(--glass-inset);
}
/* 代码块样式 */
.code-block {
background: var(--glass-bg);
backdrop-filter: var(--glass-blur);
border-radius: 12px;
padding: 16px;
margin: 20px 0;
position: relative;
overflow: hidden;
font-family: 'JetBrains Mono', monospace;
font-size: 0.8em;
}
.code-block::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
border-radius: 12px 12px 0 0;
}
/* 步骤卡片和数字 */
.step-card {
border-left: 4px solid var(--info-highlight);
padding-left: 16px;
margin: 12px 0;
}
.step-number {
display: inline-block;
background: linear-gradient(45deg, var(--info-highlight), var(--success-highlight));
color: white;
border-radius: 50%;
width: 32px;
height: 32px;
line-height: 32px;
text-align: center;
font-weight: 700;
font-size: 0.9em;
margin-right: 12px;
animation: pulse 1.5s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
50% {
transform: scale(1.05);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}
100% {
transform: scale(1);
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
}
/* 动画类型 */
.auto-animate {
animation: fadeInUp 0.5s ease-out;
}
.stagger-animation li:nth-child(1) {
animation: slideInLeft 0.4s ease-out 0.1s both;
}
.stagger-animation li:nth-child(2) {
animation: slideInLeft 0.4s ease-out 0.2s both;
}
.stagger-animation li:nth-child(3) {
animation: slideInLeft 0.4s ease-out 0.3s both;
}
.stagger-animation li:nth-child(4) {
animation: slideInLeft 0.4s ease-out 0.4s both;
}
.stagger-animation li:nth-child(5) {
animation: slideInLeft 0.4s ease-out 0.5s both;
}
.zoom-in-animation {
animation: zoomIn 0.5s ease-out 0.6s both;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideInLeft {
from {
opacity: 0;
transform: translateX(-30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale(0.8);
}
to {
opacity: 1;
transform: scale(1);
}
}
/* 背景粒子系统 */
.particles-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: -1;
}
.particle {
position: absolute;
width: 3px;
height: 3px;
background: radial-gradient(circle, rgba(102, 126, 234, 0.6), transparent);
border-radius: 50%;
animation: particleFloat 2s ease-in-out infinite;
}
@keyframes particleFloat {
0%,
100% {
transform: translateY(0px) translateX(0px);
opacity: 0.3;
}
50% {
transform: translateY(-20px) translateX(10px);
opacity: 0.8;
}
}
/* 响应式优化 */
@media (max-width: 768px) {
.features-grid,
.tech-grid {
grid-template-columns: 1fr;
}
.stats-grid {
grid-template-columns: 1fr 1fr;
}
.reveal {
font-size: 28px;
}
}
/* 表格样式 */
.comparison-table {
background: var(--glass-bg);
backdrop-filter: var(--glass-blur);
border-radius: 12px;
padding: 16px;
margin: 20px 0;
overflow: hidden;
}
.comparison-table table {
width: 100%;
border-collapse: collapse;
font-size: 0.8em;
}
.comparison-table th,
.comparison-table td {
padding: 12px;
text-align: left;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.comparison-table th {
background: rgba(255, 255, 255, 0.1);
font-weight: 600;
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- 标题页 -->
<section class="title-slide" id="title-slide">
<!-- 背景装饰 -->
<div class="glow-effect"></div>
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
<!-- 标题容器 -->
<div class="title-container">
<h1 class="title-main">🎨 Claude Code PPT 设计系统教程</h1>
<h4 class="subtitle-main">🤖 与 Claude Code 一起创建专业级演示文稿</h4>
<p class="description-main">使用 AI 的强大能力,在几分钟内创建视觉震撼的现代化演示文稿</p>
</div>
</section>
<!-- 项目亮点 -->
<section>
<h2>🚀 项目核心亮点</h2>
<div class="features-grid auto-animate">
<div class="feature-card">
<h4>⚡ <span class="keyword-highlight">极致效率</span></h4>
<ul class="stagger-animation">
<li><span class="number-highlight">5分钟</span>创建完整演示文稿</li>
<li><span class="success-highlight">零配置</span>直接打开HTML演示</li>
<li><span class="info-highlight">一键生成</span>复杂设计需求</li>
</ul>
</div>
<div class="feature-card">
<h4>🎭 <span class="keyword-highlight">视觉震撼</span></h4>
<ul class="stagger-animation">
<li><span class="warning-highlight">渐变标题页</span>美观动画效果</li>
<li><span class="info-highlight">高级毛玻璃</span>backdrop-filter效果</li>
<li><span class="success-highlight">60fps</span>专业级动画体验</li>
</ul>
</div>
<div class="feature-card">
<h4>🎯 <span class="keyword-highlight">专业品质</span></h4>
<ul class="stagger-animation">
<li><span class="number-highlight">768px</span>黄金法则投影兼容</li>
<li><span class="warning-highlight">语义化色彩</span>五种专业强调</li>
<li><span class="success-highlight">响应式设计</span>各种设备适配</li>
</ul>
</div>
<div class="feature-card">
<h4>🔧 <span class="keyword-highlight">技术先进</span></h4>
<ul class="stagger-animation">
<li><span class="info-highlight">Reveal.js 5.2.1</span>最新演示框架</li>
<li><span class="warning-highlight">现代CSS3</span>硬件加速优化</li>
<li><span class="success-highlight">jsDelivr CDN</span>国内访问优化</li>
</ul>
</div>
</div>
</section>
<!-- Claude Code实战演示 -->
<section>
<h2>🎯 Claude Code 实战演示</h2>
<div class="highlight-box zoom-in-animation">
<h4>💡 <span class="keyword-highlight">真实对话示例</span></h4>
<p>用户提供需求 → Claude Code 分析理解 → <span class="success-highlight">自动生成</span>专业演示文稿</p>
</div>
<div class="features-grid auto-animate">
<div class="feature-card">
<h4>📋 <span class="info-highlight">用户需求</span></h4>
<ul class="stagger-animation">
<li>演示主题:Reveal.js PPT设计系统</li>
<li>视觉要求:<span class="warning-highlight">美观效果</span> + 毛玻璃</li>
<li>技术规范:<span class="number-highlight">768px</span>约束 + CDN</li>
<li>内容结构:7-8页完整教程</li>
</ul>
</div>
<div class="feature-card">
<h4>🎬 <span class="success-highlight">生成结果</span></h4>
<ul class="stagger-animation">
<li><span class="keyword-highlight">完整HTML</span>演示文稿</li>
<li><span class="info-highlight">高级视觉效果</span>全面实现</li>
<li><span class="warning-highlight">专业设计</span>规范遵循</li>
<li><span class="success-highlight">即开即用</span>零配置体验</li>
</ul>
</div>
</div>
</section>
<!-- Claude Code使用指南 -->
<section>
<h2>🛠️ Claude Code 使用指南</h2>
<div class="tech-grid auto-animate">
<div class="tech-card">
<div class="step-number">1</div>
<h4><span class="info-highlight">启动Claude Code</span></h4>
<p>在项目目录运行 <span class="keyword-highlight">claude</span> 命令</p>
</div>
<div class="tech-card">
<div class="step-number">2</div>
<h4><span class="warning-highlight">描述需求</span></h4>
<p>详细说明内容结构和视觉要求</p>
</div>
<div class="tech-card">
<div class="step-number">3</div>
<h4><span class="success-highlight">自动生成</span></h4>
<p>Claude Code理解并创建演示文稿</p>
</div>
</div>
<div class="code-block">
<pre><code class="text">📋 专业提示词模板:
请创建一个关于 [你的主题] 的现代化PPT演示文稿,严格遵循以下规范:
🎯 设计系统要求:
- 基于 CLAUDE.md 中的高级设计系统
- 768px黄金法则,确保所有内容完整显示
- 白色主题 + 高级毛玻璃效果
🎭 视觉效果要求:
- 渐变标题页:美观动画 + 粒子系统
- Shimmer闪光扫过效果
- 毛玻璃强调框效果</code></pre>
</div>
</section>
<!-- 设计系统核心特性 -->
<section>
<h2>🎨 设计系统核心特性</h2>
<div class="features-grid auto-animate">
<div class="feature-card">
<h4>🌈 <span class="keyword-highlight">语义化色彩系统</span></h4>
<ul class="stagger-animation">
<li><span class="keyword-highlight">关键词</span> - 重要概念强调</li>
<li><span class="success-highlight">成功</span> - 积极结果展示</li>
<li><span class="info-highlight">信息</span> - 技术术语说明</li>
<li><span class="warning-highlight">警告</span> - 注意事项提醒</li>
<li><span class="number-highlight">数字</span> - 统计数据突出</li>
</ul>
</div>
<div class="feature-card">
<h4>📐 <span class="warning-highlight">768px黄金法则</span></h4>
<ul class="stagger-animation">
<li><span class="info-highlight">投影兼容</span>:1024x768完整显示</li>
<li><span class="success-highlight">注意力管理</span>:内容量精简控制</li>
<li><span class="keyword-highlight">演示流畅</span>:避免滚动干扰</li>
<li><span class="warning-highlight">标准统一</span>:一致设计约束</li>
</ul>
</div>
</div>
<div class="comparison-table">
<table>
<thead>
<tr>
<th>组件</th>
<th>用途</th>
<th>列数</th>
<th>适用场景</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="info-highlight">features-grid</span></td>
<td>特性对比</td>
<td><span class="number-highlight">2列</span></td>
<td>优势劣势、前后对比</td>
</tr>
<tr>
<td><span class="warning-highlight">tech-grid</span></td>
<td>技术展示</td>
<td><span class="number-highlight">3列</span></td>
<td>技术栈、工具介绍</td>
</tr>
<tr>
<td><span class="success-highlight">stats-grid</span></td>
<td>数据统计</td>
<td><span class="number-highlight">4列</span></td>
<td>KPI指标、数据看板</td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- 学习资源 -->
<section>
<h2>📚 学习资源与快速开始</h2>
<div class="features-grid auto-animate">
<div class="feature-card">
<h4>📖 <span class="info-highlight">项目文档</span></h4>
<ul class="stagger-animation">
<li><span class="keyword-highlight">CLAUDE.md</span> - 完整设计系统指南</li>
<li><span class="success-highlight">index.html</span> - 实际演示文稿案例</li>
<li><span class="warning-highlight">examples/</span> - 更多演示实例</li>
</ul>
</div>
<div class="feature-card">
<h4>🎯 <span class="success-highlight">最佳实践案例</span></h4>
<ul class="stagger-animation">
<li><span class="info-highlight">Claude Code演示</span> - AI编程助手</li>
<li><span class="warning-highlight">DeepSeek介绍</span> - AI模型分享</li>
<li><span class="keyword-highlight">Reveal.js演示</span> - 框架功能展示</li>
</ul>
</div>
</div>
<div class="stats-grid zoom-in-animation">
<div class="stat-card">
<div class="step-number">1</div>
<h4>克隆项目</h4>
<p><span class="info-highlight">git clone</span></p>
</div>
<div class="stat-card">
<div class="step-number">2</div>
<h4>启动Claude</h4>
<p><span class="warning-highlight">claude</span></p>
</div>
<div class="stat-card">
<div class="step-number">3</div>
<h4>描述需求</h4>
<p><span class="keyword-highlight">详细提示词</span></p>
</div>
<div class="stat-card">
<div class="step-number">4</div>
<h4>查看结果</h4>
<p><span class="success-highlight">open html</span></p>
</div>
</div>
</section>
<!-- 高级技巧与个性化 -->
<section>
<h2>🌟 高级技巧与个性化定制</h2>
<div class="highlight-box zoom-in-animation">
<h4>💡 <span class="keyword-highlight">提示词优化技巧</span></h4>
<p>具体化描述 + 引用规范 + 示例引导 + <span class="success-highlight">迭代改进</span></p>
</div>
<div class="features-grid auto-animate">
<div class="feature-card">
<h4>🎨 <span class="warning-highlight">个性化定制</span></h4>
<ul class="stagger-animation">
<li><span class="keyword-highlight">企业品牌色</span>:自定义强调色彩</li>
<li><span class="info-highlight">特殊字体</span>:Montserrat等设计字体</li>
<li><span class="success-highlight">自定义动画</span>:数字计数等效果</li>
<li><span class="warning-highlight">品牌元素</span>:Logo占位符集成</li>
</ul>
</div>
<div class="feature-card">
<h4>🔧 <span class="success-highlight">性能优化</span></h4>
<ul class="stagger-animation">
<li><span class="info-highlight">资源预加载</span>:字体和关键资源</li>
<li><span class="keyword-highlight">动画优化</span>:transform替代layout</li>
<li><span class="warning-highlight">图片优化</span>:WebP格式适当尺寸</li>
<li><span class="success-highlight">代码压缩</span>:生产环境优化</li>
</ul>
</div>
</div>
<div class="tech-grid auto-animate">
<div class="tech-card">
<h4><span class="info-highlight">商业汇报</span></h4>
<p>专业商务,蓝色主色调,数据可视化</p>
</div>
<div class="tech-card">
<h4><span class="warning-highlight">技术分享</span></h4>
<p>现代科技,绿色强调,代码高亮</p>
</div>
<div class="tech-card">
<h4><span class="success-highlight">产品发布</span></h4>
<p>创新活力,橙色主色调,产品展示</p>
</div>
</div>
</section>
<!-- 总结页 -->
<section>
<h2>🚀 开始你的 Claude Code PPT 之旅</h2>
<div class="highlight-box zoom-in-animation">
<h4>🎯 <span class="keyword-highlight">让AI成为你的设计伙伴</span></h4>
<p>创造专业级演示体验,让每个人都能做出视觉震撼的PPT</p>
</div>
<div class="features-grid auto-animate">
<div class="feature-card">
<h4>✅ <span class="success-highlight">核心优势</span></h4>
<ul class="stagger-animation">
<li><span class="number-highlight">5分钟</span>从需求到成品</li>
<li><span class="keyword-highlight">768px法则</span>投影完美适配</li>
<li><span class="info-highlight">高级视觉效果</span>专业品质</li>
<li><span class="warning-highlight">组件化设计</span>高效复用</li>
</ul>
</div>
<div class="feature-card">
<h4>🎯 <span class="keyword-highlight">立即行动</span></h4>
<ul class="stagger-animation">
<li><span class="info-highlight">启动Claude Code</span>开始创作</li>
<li><span class="success-highlight">查看CLAUDE.md</span>深入学习</li>
<li><span class="warning-highlight">探索examples</span>获取灵感</li>
<li><span class="keyword-highlight">分享作品</span>展示成果</li>
</ul>
</div>
</div>
<div class="step-card zoom-in-animation">
<h4>🎨 让每个人都能创造出视觉震撼的专业演示文稿</h4>
<p>通过Claude Code的AI能力,设计不再是障碍,创意才是关键。</p>
</div>
</section>
</div>
</div>
<!-- 背景粒子系统 -->
<div class="particles-container" id="particles"></div>
<!-- Reveal.js 脚本 -->
<script src="https://cdn.jsdelivr.net/npm/reveal.js@5.2.1/dist/reveal.js"></script>
<script src="https://cdn.jsdelivr.net/npm/reveal.js@5.2.1/plugin/highlight/highlight.js"></script>
<script src="https://cdn.jsdelivr.net/npm/reveal.js@5.2.1/plugin/markdown/markdown.js"></script>
<script src="https://cdn.jsdelivr.net/npm/reveal.js@5.2.1/plugin/notes/notes.js"></script>
<script>
// Reveal.js 初始化
Reveal.initialize({
view: 'scroll', // 现代滚动模式
width: 1024,
height: 768,
margin: 0.05,
autoAnimateEasing: 'ease-in-out',
autoAnimateDuration: 1.0,
scrollProgress: true,
controls: true,
progress: true,
keyboard: true,
touch: true,
hash: true,
plugins: [RevealHighlight, RevealMarkdown, RevealNotes]
});
// 创建背景粒子系统
function createParticles() {
const container = document.getElementById('particles');
const particleCount = 30;
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.className = 'particle';
particle.style.left = Math.random() * 100 + '%';
particle.style.top = Math.random() * 100 + '%';
particle.style.animationDelay = Math.random() * 8 + 's';
particle.style.animationDuration = (Math.random() * 4 + 6) + 's';
container.appendChild(particle);
}
}
// 标题页动画在初始化时自动启动
function initTitleAnimations() {
// 所有动画都由CSS控制,无需JavaScript交互
console.log('标题页动画已初始化');
}
// 粒子视差效果
function handleParticleMouseMove(event) {
const particles = document.querySelectorAll('.particle');
const mouseX = event.clientX / window.innerWidth - 0.5;
const mouseY = event.clientY / window.innerHeight - 0.5;
particles.forEach((particle, index) => {
const speed = (index % 3 + 1) * 0.5;
const x = mouseX * speed * 50;
const y = mouseY * speed * 50;
particle.style.transform = `translate(${x}px, ${y}px)`;
});
}
// 键盘快捷键
function handleKeyboard(event) {
switch (event.key.toLowerCase()) {
case 'f':
// 全屏切换
if (document.fullscreenElement) {
document.exitFullscreen();
} else {
document.documentElement.requestFullscreen();
}
break;
case 'r':
// 重新加载页面
location.reload();
break;
case '3':
// 重置动画
location.reload();