-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
885 lines (884 loc) · 21.4 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>课程练习集中地</title>
<style>
* {
margin: 0;
padding: 0;
}
#mindmap {
display: block;
width: 100vw;
height: 100vh;
}
</style>
<script src="https://cdn.jsdelivr.net/npm/d3@5"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/view.min.js"></script>
</head>
<body>
<svg id="mindmap"></svg>
<script>
markmap.markmap('svg#mindmap', {
"t": "heading",
"d": 1,
"v": "练习集中地",
"c": [{
"t": "heading",
"d": 2,
"v": "课程说明",
"c": [{
"t": "heading",
"d": 3,
"v": "前端开发课程授课所用课堂练习源码,供大家使用。"
}, {
"t": "heading",
"d": 3,
"v": "所有大神都是练出来!"
}]
}, {
"t": "heading",
"d": 2,
"v": "内容体系",
"c": [{
"t": "list_item",
"d": 3,
"v": "了解课程",
"c": [{
"t": "list_item",
"d": 4,
"v": "前端开发简介",
"c": [{
"t": "list_item",
"d": 5,
"v": "行业发展",
"c": [{
"t": "list_item",
"d": 6,
"v": "职位描述"
}, {
"t": "list_item",
"d": 6,
"v": "任职要求"
}, {
"t": "list_item",
"d": 6,
"v": "学习路径"
}]
}]
}, {
"t": "list_item",
"d": 4,
"v": "课程概述",
"c": [{
"t": "list_item",
"d": 5,
"v": "课程定位",
"c": [{
"t": "list_item",
"d": 6,
"v": "前端开发系列课程",
"c": [{
"t": "list_item",
"d": 7,
"v": "界面设计"
}, {
"t": "list_item",
"d": 7,
"v": "前端开发"
}, {
"t": "list_item",
"d": 7,
"v": "交互开发"
}, {
"t": "list_item",
"d": 7,
"v": "混合式APP开发"
}, {
"t": "list_item",
"d": 7,
"v": "微信开发"
}]
}, {
"t": "list_item",
"d": 6,
"v": "前端开发学习路径",
"c": [{
"t": "list_item",
"d": 7,
"v": "网页布局"
}, {
"t": "list_item",
"d": 7,
"v": "动态交互"
}, {
"t": "list_item",
"d": 7,
"v": "组件化思想、重构"
}, {
"t": "list_item",
"d": 7,
"v": "移动web APP开发"
}, {
"t": "list_item",
"d": 7,
"v": "小程序应用"
}, {
"t": "list_item",
"d": 7,
"v": "主流框架构建应用"
}, {
"t": "list_item",
"d": 7,
"v": "综合实践"
}]
}]
}, {
"t": "list_item",
"d": 5,
"v": "课程内容"
}, {
"t": "list_item",
"d": 5,
"v": "课程资源"
}, {
"t": "list_item",
"d": 5,
"v": "学习方法"
}]
}, {
"t": "list_item",
"d": 4,
"v": "牛刀小试",
"c": [{
"t": "list_item",
"d": 5,
"v": "开发环境部署",
"c": [{
"t": "list_item",
"d": 6,
"v": "Hbuilder"
}, {
"t": "list_item",
"d": 6,
"v": "Chrome"
}]
}, {
"t": "list_item",
"d": 5,
"v": "Hello World"
}]
}]
}, {
"t": "list_item",
"d": 3,
"v": "初识HTML",
"c": [{
"t": "list_item",
"d": 4,
"v": "初见建筑师HTML",
"c": [{
"t": "list_item",
"d": 5,
"v": "HTML概念"
}, {
"t": "list_item",
"d": 5,
"v": "HTML基本语法"
}, {
"t": "list_item",
"d": 5,
"v": "HTML标签与属性"
}, {
"t": "list_item",
"d": 5,
"v": "识别HTML",
"c": [{
"t": "list_item",
"d": 6,
"v": "过时的标签"
}, {
"t": "list_item",
"d": 6,
"v": "错误的写法"
}]
}]
}, {
"t": "list_item",
"d": 4,
"v": "搭建极简网页",
"c": [{
"t": "list_item",
"d": 5,
"v": "文档类型定义 doctype"
}, {
"t": "list_item",
"d": 5,
"v": "html\\head\\body"
}, {
"t": "list_item",
"d": 5,
"v": "style\\script"
}, {
"t": "list_item",
"d": 5,
"v": "节点元素",
"c": [{
"t": "list_item",
"d": 6,
"v": "header\\footer\\main\\nava\\aside\\section\\article"
}]
}]
}, {
"t": "list_item",
"d": 4,
"v": "处理文本",
"c": [{
"t": "list_item",
"d": 5,
"v": "标题",
"c": [{
"t": "list_item",
"d": 6,
"v": "h1\\h2\\h3\\h4\\h5\\h6"
}, {
"t": "list_item",
"d": 6,
"v": "hgroup"
}]
}, {
"t": "list_item",
"d": 5,
"v": "p"
}, {
"t": "list_item",
"d": 5,
"v": "div\\span"
}, {
"t": "list_item",
"d": 5,
"v": "强调、引用",
"c": [{
"t": "list_item",
"d": 6,
"v": "em\\strong"
}, {
"t": "list_item",
"d": 6,
"v": "q\\cite\\mark\\blockquote"
}]
}, {
"t": "list_item",
"d": 5,
"v": "格式化本文",
"c": [{
"t": "list_item",
"d": 6,
"v": "i\\u\\b\\s"
}, {
"t": "list_item",
"d": 6,
"v": "sup\\sub\\big\\small\\var\\code"
}]
}, {
"t": "list_item",
"d": 5,
"v": "编辑",
"c": [{
"t": "list_item",
"d": 6,
"v": "ins\\del"
}]
}]
}, {
"t": "list_item",
"d": 4,
"v": "嵌入媒体",
"c": [{
"t": "list_item",
"d": 5,
"v": "媒体嵌入与资源地址"
}, {
"t": "list_item",
"d": 5,
"v": "图像相关",
"c": [{
"t": "list_item",
"d": 6,
"v": "img"
}, {
"t": "list_item",
"d": 6,
"v": "figure\\figcaption"
}]
}, {
"t": "list_item",
"d": 5,
"v": "音视频相关",
"c": [{
"t": "list_item",
"d": 6,
"v": "audio"
}, {
"t": "list_item",
"d": 6,
"v": "video"
}, {
"t": "list_item",
"d": 6,
"v": "svg\\canvas"
}]
}]
}, {
"t": "list_item",
"d": 4,
"v": "创建超链接",
"c": [{
"t": "list_item",
"d": 5,
"v": "a"
}, {
"t": "list_item",
"d": 5,
"v": "普通链接"
}, {
"t": "list_item",
"d": 5,
"v": "页内链接"
}, {
"t": "list_item",
"d": 5,
"v": "热区链接",
"c": [{
"t": "list_item",
"d": 6,
"v": "map\\area"
}]
}]
}]
}, {
"t": "list_item",
"d": 3,
"v": "上手CSS",
"c": [{
"t": "list_item",
"d": 4,
"v": "邂逅化妆师CSS",
"c": [{
"t": "list_item",
"d": 5,
"v": "CSS概念"
}, {
"t": "list_item",
"d": 5,
"v": "CSS语法"
}, {
"t": "list_item",
"d": 5,
"v": "CSS使用方式"
}, {
"t": "list_item",
"d": 5,
"v": "牛刀小试"
}]
}, {
"t": "list_item",
"d": 4,
"v": "CSS选择的艺术",
"c": [{
"t": "list_item",
"d": 5,
"v": "基础选择器"
}, {
"t": "list_item",
"d": 5,
"v": "高级选择器"
}]
}, {
"t": "list_item",
"d": 4,
"v": "颜色与背景",
"c": [{
"t": "list_item",
"d": 5,
"v": "颜色与单位"
}, {
"t": "list_item",
"d": 5,
"v": "背景相关属性"
}, {
"t": "list_item",
"d": 5,
"v": "CSS Sprite"
}, {
"t": "list_item",
"d": 5,
"v": "CSS渐变(可选)"
}]
}, {
"t": "list_item",
"d": 4,
"v": "边框圆角阴影",
"c": [{
"t": "list_item",
"d": 5,
"v": "边框"
}, {
"t": "list_item",
"d": 5,
"v": "圆角"
}, {
"t": "list_item",
"d": 5,
"v": "CSS绘图与按钮",
"c": [{
"t": "list_item",
"d": 6,
"v": "https://codepen.io/ricardozea/pen/feiLs"
}, {
"t": "list_item",
"d": 6,
"v": "https://littlesnippets.net/snip1505"
}]
}]
}, {
"t": "list_item",
"d": 4,
"v": "CSS文本样式",
"c": [{
"t": "list_item",
"d": 5,
"v": "字体"
}, {
"t": "list_item",
"d": 5,
"v": "文本"
}, {
"t": "list_item",
"d": 5,
"v": "文本装饰"
}, {
"t": "list_item",
"d": 5,
"v": "书写模式"
}]
}, {
"t": "list_item",
"d": 4,
"v": "列表",
"c": [{
"t": "list_item",
"d": 5,
"v": "构建列表",
"c": [{
"t": "list_item",
"d": 6,
"v": "ol\\ul\\li\\dl\\dt\\dd"
}, {
"t": "list_item",
"d": 6,
"v": "语义化使用"
}]
}, {
"t": "list_item",
"d": 5,
"v": "美化列表"
}]
}, {
"t": "list_item",
"d": 4,
"v": "表格",
"c": [{
"t": "list_item",
"d": 5,
"v": "构建表格",
"c": [{
"t": "list_item",
"d": 6,
"v": "table\\caption\\tr\\th\\td"
}, {
"t": "list_item",
"d": 6,
"v": "\\thead\\tbody\\tfoot"
}, {
"t": "list_item",
"d": 6,
"v": "col\\colgroup"
}]
}, {
"t": "list_item",
"d": 5,
"v": "美化表格",
"c": [{
"t": "list_item",
"d": 6,
"v": "细线表格"
}, {
"t": "list_item",
"d": 6,
"v": "斑马纹表格"
}]
}]
}]
}, {
"t": "list_item",
"d": 3,
"v": "玩转布局",
"c": [{
"t": "list_item",
"d": 4,
"v": "盒模型"
}, {
"t": "list_item",
"d": 4,
"v": "浮动"
}, {
"t": "list_item",
"d": 4,
"v": "定位"
}, {
"t": "list_item",
"d": 4,
"v": "布局案例"
}, {
"t": "list_item",
"d": 4,
"v": "弹性盒模型(可选)"
}]
}, {
"t": "list_item",
"d": 3,
"v": "深入CSS",
"c": [{
"t": "list_item",
"d": 4,
"v": "浏览器兼容",
"c": [{
"t": "list_item",
"d": 5,
"v": "can i use"
}, {
"t": "list_item",
"d": 5,
"v": "浏览器前缀"
}, {
"t": "list_item",
"d": 5,
"v": "Autoprefixer(可选)"
}]
}, {
"t": "list_item",
"d": 4,
"v": "过渡"
}, {
"t": "list_item",
"d": 4,
"v": "动画"
}, {
"t": "list_item",
"d": 4,
"v": "转换"
}, {
"t": "list_item",
"d": 4,
"v": "响应式布局(可选)",
"c": [{
"t": "list_item",
"d": 5,
"v": "媒体查询"
}, {
"t": "list_item",
"d": 5,
"v": "响应式布局案例"
}]
}, {
"t": "list_item",
"d": 4,
"v": "常见UI库(可选)",
"c": [{
"t": "list_item",
"d": 5,
"v": "bootstrap"
}, {
"t": "list_item",
"d": 5,
"v": "mazeui"
}]
}, {
"t": "list_item",
"d": 4,
"v": "命名规范与机制",
"c": [{
"t": "list_item",
"d": 5,
"v": "命名规则"
}]
}]
}, {
"t": "list_item",
"d": 3,
"v": "构建组件",
"c": [{
"t": "list_item",
"d": 4,
"v": "新闻列表"
}, {
"t": "list_item",
"d": 4,
"v": "导航菜单",
"c": [{
"t": "list_item",
"d": 5,
"v": "单列菜单"
}, {
"t": "list_item",
"d": 5,
"v": "下拉菜单"
}, {
"t": "list_item",
"d": 5,
"v": "手风琴菜单"
}]
}, {
"t": "list_item",
"d": 4,
"v": "卡片",
"c": [{
"t": "list_item",
"d": 5,
"v": "新闻卡片",
"c": [{
"t": "list_item",
"d": 6,
"v": "https://littlesnippets.net/snip1237"
}]
}, {
"t": "list_item",
"d": 5,
"v": "图片卡片",
"c": [{
"t": "list_item",
"d": 6,
"v": "https://littlesnippets.net/snip1237"
}]
}]
}, {
"t": "list_item",
"d": 4,
"v": "注册表单",
"c": [{
"t": "list_item",
"d": 5,
"v": "构建表单",
"c": [{
"t": "list_item",
"d": 6,
"v": "form"
}, {
"t": "list_item",
"d": 6,
"v": "fieldset\\legend"
}, {
"t": "list_item",
"d": 6,
"v": "input\\label\\select\\textarea\\button"
}, {
"t": "list_item",
"d": 6,
"v": "output\\keygen\\progress\\meter\\datalist\\"
}]
}, {
"t": "list_item",
"d": 5,
"v": "表单布局"
}]
}]
}, {
"t": "list_item",
"d": 3,
"v": "实现案例",
"c": [{
"t": "list_item",
"d": 4,
"v": "仿腾讯会议",
"c": [{
"t": "list_item",
"d": 5,
"v": "https://meeting.qq.com/index.html"
}, {
"t": "list_item",
"d": 5,
"v": "至少实现2-3个页面"
}]
}, {
"t": "list_item",
"d": 4,
"v": "仿迅雷",
"c": [{
"t": "list_item",
"d": 5,
"v": "https://www.xunlei.com/"
}, {
"t": "list_item",
"d": 5,
"v": "至少实现3-5个页面"
}]
}]
}]
}, {
"t": "heading",
"d": 2,
"v": "练习目录",
"c": [{
"t": "list_item",
"d": 3,
"v": "了解课程",
"c": [{
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/01/index.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">极简网页</a>"
}]
}, {
"t": "list_item",
"d": 3,
"v": "初见建筑师HTML",
"c": [{
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/02/global%20attributes.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">全局属性</a>"
}]
}, {
"t": "list_item",
"d": 3,
"v": "搭建极简网页",
"c": [{
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/03/blog.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">分节元素</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/03/test.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">head部分元素</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/03/meta.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">meta元素</a>"
}]
}, {
"t": "list_item",
"d": 3,
"v": "处理文本",
"c": [{
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/04/test.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">综合示例</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/04/format.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">格式化</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/04/em.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">强调</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/04/cite.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">引用</a>"
}]
}, {
"t": "list_item",
"d": 3,
"v": "嵌入媒体",
"c": [{
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/05/img.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">插入图像</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/05/audio.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">使用音频</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/05/audio2.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">音乐播放器</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/05/samp.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">使用音视频</a>"
}]
}, {
"t": "list_item",
"d": 3,
"v": "创建超链接",
"c": [{
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/06/01.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">超链接示例</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/06/02.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">使用超链接</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/06/mobile.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">链接到协议</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/06/person.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">个人简历</a>"
}]
}, {
"t": "list_item",
"d": 3,
"v": "邂逅化妆师CSS",
"c": [{
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/07/rule.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">CSS基本规则</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/07/samp.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">基本语法</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/07/use.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">使用CSS</a>"
}]
}, {
"t": "list_item",
"d": 3,
"v": "CSS选择的艺术",
"c": [{
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/08/simple.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">基本选择器</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/08/ad.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">软文广告</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/08/attr.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">属性选择器</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/08/test.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">属性选择器-上课用</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/08/pseudo_object.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">伪对象选择器</a>"
}, {
"t": "list_item",
"d": 4,
"v": "<a href=\"//zptcsoft.github.io/h/08/heart.html\" title=\"\" target=\"_blank\" rel=\"noopener noreferrer\">伪元素绘图-心形</a>"
}]
}]
}]
}).fit()
</script>
</body>
</html>