forked from MQguer/XDU-CS-Resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNetDisk.html
568 lines (547 loc) · 41.3 KB
/
NetDisk.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
<!doctype html>
<html>
<head>
<meta charset='UTF-8'><meta name='viewport' content='width=device-width initial-scale=1'>
<style type='text/css'>html {overflow-x: initial !important;}:root { --bg-color:#ffffff; --text-color:#333333; --select-text-bg-color:#B5D6FC; --select-text-font-color:auto; --monospace:"Lucida Console",Consolas,"Courier",monospace; --title-bar-height:20px; }
.mac-os-11 { --title-bar-height:28px; }
html { font-size: 14px; background-color: var(--bg-color); color: var(--text-color); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body { margin: 0px; padding: 0px; height: auto; inset: 0px; font-size: 1rem; line-height: 1.42857; overflow-x: hidden; background: inherit; tab-size: 4; }
iframe { margin: auto; }
a.url { word-break: break-all; }
a:active, a:hover { outline: 0px; }
.in-text-selection, ::selection { text-shadow: none; background: var(--select-text-bg-color); color: var(--select-text-font-color); }
#write { margin: 0px auto; height: auto; width: inherit; word-break: normal; overflow-wrap: break-word; position: relative; white-space: normal; overflow-x: visible; padding-top: 36px; }
#write.first-line-indent p { text-indent: 2em; }
#write.first-line-indent li p, #write.first-line-indent p * { text-indent: 0px; }
#write.first-line-indent li { margin-left: 2em; }
.for-image #write { padding-left: 8px; padding-right: 8px; }
body.typora-export { padding-left: 30px; padding-right: 30px; }
.typora-export .footnote-line, .typora-export li, .typora-export p { white-space: pre-wrap; }
.typora-export .task-list-item input { pointer-events: none; }
@media screen and (max-width: 500px) {
body.typora-export { padding-left: 0px; padding-right: 0px; }
#write { padding-left: 20px; padding-right: 20px; }
.CodeMirror-sizer { margin-left: 0px !important; }
.CodeMirror-gutters { display: none !important; }
}
#write li > figure:last-child { margin-bottom: 0.5rem; }
#write ol, #write ul { position: relative; }
img { max-width: 100%; vertical-align: middle; image-orientation: from-image; }
button, input, select, textarea { color: inherit; font: inherit; }
input[type="checkbox"], input[type="radio"] { line-height: normal; padding: 0px; }
*, ::after, ::before { box-sizing: border-box; }
#write h1, #write h2, #write h3, #write h4, #write h5, #write h6, #write p, #write pre { width: inherit; }
#write h1, #write h2, #write h3, #write h4, #write h5, #write h6, #write p { position: relative; }
p { line-height: inherit; }
h1, h2, h3, h4, h5, h6 { break-after: avoid-page; break-inside: avoid; orphans: 4; }
p { orphans: 4; }
h1 { font-size: 2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }
.md-math-block, .md-rawblock, h1, h2, h3, h4, h5, h6, p { margin-top: 1rem; margin-bottom: 1rem; }
.hidden { display: none; }
.md-blockmeta { color: rgb(204, 204, 204); font-weight: 700; font-style: italic; }
a { cursor: pointer; }
sup.md-footnote { padding: 2px 4px; background-color: rgba(238, 238, 238, 0.7); color: rgb(85, 85, 85); border-radius: 4px; cursor: pointer; }
sup.md-footnote a, sup.md-footnote a:hover { color: inherit; text-transform: inherit; text-decoration: inherit; }
#write input[type="checkbox"] { cursor: pointer; width: inherit; height: inherit; }
figure { overflow-x: auto; margin: 1.2em 0px; max-width: calc(100% + 16px); padding: 0px; }
figure > table { margin: 0px; }
tr { break-inside: avoid; break-after: auto; }
thead { display: table-header-group; }
table { border-collapse: collapse; border-spacing: 0px; width: 100%; overflow: auto; break-inside: auto; text-align: left; }
table.md-table td { min-width: 32px; }
.CodeMirror-gutters { border-right: 0px; background-color: inherit; }
.CodeMirror-linenumber { user-select: none; }
.CodeMirror { text-align: left; }
.CodeMirror-placeholder { opacity: 0.3; }
.CodeMirror pre { padding: 0px 4px; }
.CodeMirror-lines { padding: 0px; }
div.hr:focus { cursor: none; }
#write pre { white-space: pre-wrap; }
#write.fences-no-line-wrapping pre { white-space: pre; }
#write pre.ty-contain-cm { white-space: normal; }
.CodeMirror-gutters { margin-right: 4px; }
.md-fences { font-size: 0.9rem; display: block; break-inside: avoid; text-align: left; overflow: visible; white-space: pre; background: inherit; position: relative !important; }
.md-fences-adv-panel { width: 100%; margin-top: 10px; text-align: center; padding-top: 0px; padding-bottom: 8px; overflow-x: auto; }
#write .md-fences.mock-cm { white-space: pre-wrap; }
.md-fences.md-fences-with-lineno { padding-left: 0px; }
#write.fences-no-line-wrapping .md-fences.mock-cm { white-space: pre; overflow-x: auto; }
.md-fences.mock-cm.md-fences-with-lineno { padding-left: 8px; }
.CodeMirror-line, twitterwidget { break-inside: avoid; }
.footnotes { opacity: 0.8; font-size: 0.9rem; margin-top: 1em; margin-bottom: 1em; }
.footnotes + .footnotes { margin-top: 0px; }
.md-reset { margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: top; background: 0px 0px; text-decoration: none; text-shadow: none; float: none; position: static; width: auto; height: auto; white-space: nowrap; cursor: inherit; -webkit-tap-highlight-color: transparent; line-height: normal; font-weight: 400; text-align: left; box-sizing: content-box; direction: ltr; }
li div { padding-top: 0px; }
blockquote { margin: 1rem 0px; }
li .mathjax-block, li p { margin: 0.5rem 0px; }
li blockquote { margin: 1rem 0px; }
li { margin: 0px; position: relative; }
blockquote > :last-child { margin-bottom: 0px; }
blockquote > :first-child, li > :first-child { margin-top: 0px; }
.footnotes-area { color: rgb(136, 136, 136); margin-top: 0.714rem; padding-bottom: 0.143rem; white-space: normal; }
#write .footnote-line { white-space: pre-wrap; }
@media print {
body, html { border: 1px solid transparent; height: 99%; break-after: avoid; break-before: avoid; font-variant-ligatures: no-common-ligatures; }
#write { margin-top: 0px; padding-top: 0px; border-color: transparent !important; }
.typora-export * { -webkit-print-color-adjust: exact; }
.typora-export #write { break-after: avoid; }
.typora-export #write::after { height: 0px; }
.is-mac table { break-inside: avoid; }
.typora-export-show-outline .typora-export-sidebar { display: none; }
}
.footnote-line { margin-top: 0.714em; font-size: 0.7em; }
a img, img a { cursor: pointer; }
pre.md-meta-block { font-size: 0.8rem; min-height: 0.8rem; white-space: pre-wrap; background: rgb(204, 204, 204); display: block; overflow-x: hidden; }
p > .md-image:only-child:not(.md-img-error) img, p > img:only-child { display: block; margin: auto; }
#write.first-line-indent p > .md-image:only-child:not(.md-img-error) img { left: -2em; position: relative; }
p > .md-image:only-child { display: inline-block; width: 100%; }
#write .MathJax_Display { margin: 0.8em 0px 0px; }
.md-math-block { width: 100%; }
.md-math-block:not(:empty)::after { display: none; }
.MathJax_ref { fill: currentcolor; }
[contenteditable="true"]:active, [contenteditable="true"]:focus, [contenteditable="false"]:active, [contenteditable="false"]:focus { outline: 0px; box-shadow: none; }
.md-task-list-item { position: relative; list-style-type: none; }
.task-list-item.md-task-list-item { padding-left: 0px; }
.md-task-list-item > input { position: absolute; top: 0px; left: 0px; margin-left: -1.2em; margin-top: calc(1em - 10px); border: none; }
.math { font-size: 1rem; }
.md-toc { min-height: 3.58rem; position: relative; font-size: 0.9rem; border-radius: 10px; }
.md-toc-content { position: relative; margin-left: 0px; }
.md-toc-content::after, .md-toc::after { display: none; }
.md-toc-item { display: block; color: rgb(65, 131, 196); }
.md-toc-item a { text-decoration: none; }
.md-toc-inner:hover { text-decoration: underline; }
.md-toc-inner { display: inline-block; cursor: pointer; }
.md-toc-h1 .md-toc-inner { margin-left: 0px; font-weight: 700; }
.md-toc-h2 .md-toc-inner { margin-left: 2em; }
.md-toc-h3 .md-toc-inner { margin-left: 4em; }
.md-toc-h4 .md-toc-inner { margin-left: 6em; }
.md-toc-h5 .md-toc-inner { margin-left: 8em; }
.md-toc-h6 .md-toc-inner { margin-left: 10em; }
@media screen and (max-width: 48em) {
.md-toc-h3 .md-toc-inner { margin-left: 3.5em; }
.md-toc-h4 .md-toc-inner { margin-left: 5em; }
.md-toc-h5 .md-toc-inner { margin-left: 6.5em; }
.md-toc-h6 .md-toc-inner { margin-left: 8em; }
}
a.md-toc-inner { font-size: inherit; font-style: inherit; font-weight: inherit; line-height: inherit; }
.footnote-line a:not(.reversefootnote) { color: inherit; }
.md-attr { display: none; }
.md-fn-count::after { content: "."; }
code, pre, samp, tt { font-family: var(--monospace); }
kbd { margin: 0px 0.1em; padding: 0.1em 0.6em; font-size: 0.8em; color: rgb(36, 39, 41); background: rgb(255, 255, 255); border: 1px solid rgb(173, 179, 185); border-radius: 3px; box-shadow: rgba(12, 13, 14, 0.2) 0px 1px 0px, rgb(255, 255, 255) 0px 0px 0px 2px inset; white-space: nowrap; vertical-align: middle; }
.md-comment { color: rgb(162, 127, 3); opacity: 0.6; font-family: var(--monospace); }
code { text-align: left; vertical-align: initial; }
a.md-print-anchor { white-space: pre !important; border-width: initial !important; border-style: none !important; border-color: initial !important; display: inline-block !important; position: absolute !important; width: 1px !important; right: 0px !important; outline: 0px !important; background: 0px 0px !important; text-decoration: initial !important; text-shadow: initial !important; }
.os-windows.monocolor-emoji .md-emoji { font-family: "Segoe UI Symbol", sans-serif; }
.md-diagram-panel > svg { max-width: 100%; }
[lang="flow"] svg, [lang="mermaid"] svg { max-width: 100%; height: auto; }
[lang="mermaid"] .node text { font-size: 1rem; }
table tr th { border-bottom: 0px; }
video { max-width: 100%; display: block; margin: 0px auto; }
iframe { max-width: 100%; width: 100%; border: none; }
.highlight td, .highlight tr { border: 0px; }
mark { background: rgb(255, 255, 0); color: rgb(0, 0, 0); }
.md-html-inline .md-plain, .md-html-inline strong, mark .md-inline-math, mark strong { color: inherit; }
.md-expand mark .md-meta { opacity: 0.3 !important; }
mark .md-meta { color: rgb(0, 0, 0); }
@media print {
.typora-export h1, .typora-export h2, .typora-export h3, .typora-export h4, .typora-export h5, .typora-export h6 { break-inside: avoid; }
}
.md-diagram-panel .messageText { stroke: none !important; }
.md-diagram-panel .start-state { fill: var(--node-fill); }
.md-diagram-panel .edgeLabel rect { opacity: 1 !important; }
.md-fences.md-fences-math { font-size: 1em; }
.md-fences-advanced:not(.md-focus) { padding: 0px; white-space: nowrap; border: 0px; }
.md-fences-advanced:not(.md-focus) { background: inherit; }
.typora-export-show-outline .typora-export-content { max-width: 1440px; margin: auto; display: flex; flex-direction: row; }
.typora-export-sidebar { width: 300px; font-size: 0.8rem; margin-top: 80px; margin-right: 18px; }
.typora-export-show-outline #write { --webkit-flex:2; flex: 2 1 0%; }
.typora-export-sidebar .outline-content { position: fixed; top: 0px; max-height: 100%; overflow: hidden auto; padding-bottom: 30px; padding-top: 60px; width: 300px; }
@media screen and (max-width: 1024px) {
.typora-export-sidebar, .typora-export-sidebar .outline-content { width: 240px; }
}
@media screen and (max-width: 800px) {
.typora-export-sidebar { display: none; }
}
.outline-content li, .outline-content ul { margin-left: 0px; margin-right: 0px; padding-left: 0px; padding-right: 0px; list-style: none; }
.outline-content ul { margin-top: 0px; margin-bottom: 0px; }
.outline-content strong { font-weight: 400; }
.outline-expander { width: 1rem; height: 1.42857rem; position: relative; display: table-cell; vertical-align: middle; cursor: pointer; padding-left: 4px; }
.outline-expander::before { content: ""; position: relative; font-family: Ionicons; display: inline-block; font-size: 8px; vertical-align: middle; }
.outline-item { padding-top: 3px; padding-bottom: 3px; cursor: pointer; }
.outline-expander:hover::before { content: ""; }
.outline-h1 > .outline-item { padding-left: 0px; }
.outline-h2 > .outline-item { padding-left: 1em; }
.outline-h3 > .outline-item { padding-left: 2em; }
.outline-h4 > .outline-item { padding-left: 3em; }
.outline-h5 > .outline-item { padding-left: 4em; }
.outline-h6 > .outline-item { padding-left: 5em; }
.outline-label { cursor: pointer; display: table-cell; vertical-align: middle; text-decoration: none; color: inherit; }
.outline-label:hover { text-decoration: underline; }
.outline-item:hover { border-color: rgb(245, 245, 245); background-color: var(--item-hover-bg-color); }
.outline-item:hover { margin-left: -28px; margin-right: -28px; border-left: 28px solid transparent; border-right: 28px solid transparent; }
.outline-item-single .outline-expander::before, .outline-item-single .outline-expander:hover::before { display: none; }
.outline-item-open > .outline-item > .outline-expander::before { content: ""; }
.outline-children { display: none; }
.info-panel-tab-wrapper { display: none; }
.outline-item-open > .outline-children { display: block; }
.typora-export .outline-item { padding-top: 1px; padding-bottom: 1px; }
.typora-export .outline-item:hover { margin-right: -8px; border-right: 8px solid transparent; }
.typora-export .outline-expander::before { content: "+"; font-family: inherit; top: -1px; }
.typora-export .outline-expander:hover::before, .typora-export .outline-item-open > .outline-item > .outline-expander::before { content: "−"; }
.typora-export-collapse-outline .outline-children { display: none; }
.typora-export-collapse-outline .outline-item-open > .outline-children, .typora-export-no-collapse-outline .outline-children { display: block; }
.typora-export-no-collapse-outline .outline-expander::before { content: "" !important; }
.typora-export-show-outline .outline-item-active > .outline-item .outline-label { font-weight: 700; }
.md-inline-math-container mjx-container { zoom: 0.95; }
/* 全局属性 */
#write {
max-width: 860px;
font-size: 16px;
color: black;
padding: 0 10px;
line-height: 1.6;
word-spacing: 0px;
letter-spacing: 0px;
word-break: break-word;
word-wrap: break-word;
text-align: left;
font-family: Optima-Regular, Optima, PingFangSC-light, PingFangTC-light, 'PingFang SC', Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
/*段落*/
#write p {
font-size: 16px;
padding-top: 8px;
padding-bottom: 8px;
margin: 0;
line-height: 26px;
color: black;
}
/*标题*/
#write h1,
#write h2,
#write h3,
#write h4,
#write h5,
#write h6 {
margin-top: 30px;
margin-bottom: 15px;
padding: 0px;
font-weight: bold;
color: black;
}
#write h1 {
font-size: 1.5rem;
}
#write h2 {
font-size: 1.3rem;
border-bottom: 2px solid rgb(239, 112, 96);
}
#write h2 span {
display: inline-block;
font-weight: bold;
background: rgb(239, 112, 96);
color: #ffffff;
padding: 3px 10px 1px;
border-top-right-radius: 3px;
border-top-left-radius: 3px;
margin-right: 3px;
}
#write h2:after {
display: inline-block;
content: "";
vertical-align: bottom;
border-bottom: 36px solid #efebe9;
border-right: 20px solid transparent;
}
#write h3 {
font-size: 1.2rem;
}
#write h4 {
font-size: 1.1rem;
}
#write h5 {
font-size: 1rem;
}
#write h6 {
font-size: 1rem;
}
/*列表*/
#write ul,
#write ol {
margin-top: 8px;
margin-bottom: 8px;
padding-left: 25px;
color: black;
}
#write ul {
list-style-type: disc;
}
#write ul ul {
list-style-type: square;
}
#write ol {
list-style-type: decimal;
}
#write li section {
margin-top: 5px;
margin-bottom: 5px;
line-height: 26px;
text-align: left;
color: rgb(1,1,1); /* 只要是纯黑色微信编辑器就会把color这个属性吞掉。。。*/
font-weight: 500;
}
/*引用*/
#write blockquote {
display: block;
font-size: 0.9em;
overflow: auto;
overflow-scrolling: touch;
border-left: 3px solid rgb(239, 112, 96);
color: #6a737d;
padding: 10px 10px 10px 20px;
margin-bottom: 20px;
margin-top: 20px;
background: #fff9f9;
}
#write blockquote p {
margin: 0px;
color: black;
line-height: 26px;
}
/*链接*/
#write a {
text-decoration: none;
word-wrap: break-word;
font-weight: bold;
border-bottom: 1px solid #1e6bb8;
color: rgb(239, 112, 96);
border-bottom: 1px solid rgb(239, 112, 96);
}
/*行内代码*/
#write p code,
#write li code {
font-size: 14px;
word-wrap: break-word;
padding: 2px 4px;
border-radius: 4px;
margin: 0 2px;
color: rgb(239, 112, 96);;
background-color: rgba(27,31,35,.05);
font-family: Operator Mono, Consolas, Monaco, Menlo, monospace;
word-break: break-all;
}
/*图片*/
#write img {
display: block;
margin: 0 auto;
max-width: 100%;
}
#write span img {
display: inline-block;
border-right: 0px;
border-left: 0px;
}
/*表格*/
#write table {
display: table;
text-align: left;
}
#write tbody {
border: 0;
}
#write table tr {
border: 0;
border-top: 1px solid #ccc;
background-color: white;
}
#write table tr:nth-child(2n) {
background-color: #F8F8F8;
}
#write table tr th,
#write table tr td {
font-size: 16px;
border: 1px solid #ccc;
padding: 5px 10px;
text-align: left;
}
#write table tr th {
font-weight: bold;
background-color: #f0f0f0;
}
/* 行内代码 */
#write span code, #write li code {
color: rgb(239, 112, 96);
}
/* 脚注上标 */
#write .md-footnote {
font-weight: bold;
color: rgb(239, 112, 96);
}
#write .md-footnote > .md-text:before {
content: '['
}
#write .md-footnote > .md-text:after {
content: ']'
}
/* 脚注 */
#write .md-def-name {
padding-right: 1.8ch;
}
#write .md-def-name:before {
content: '[';
color: #000;
}
#write .md-def-name:after {
color: #000;
}
/* 代码块主题 */
/* .md-fences:before {
content: ' ';
display: block;
width: 100%;
background-size: 40px;
background-repeat: no-repeat;
background-color: #282c34;
margin-bottom: -7px;
border-radius: 5px;
background-position: 10px 10px;
} */
.cm-s-inner.CodeMirror {
padding-top: .5rem;
padding-bottom: .5rem;
background-color: #292d3e;
color: #a6accd;
font-family: Consolas;
border-radius: 4px;
}
.CodeMirror-lines {
padding-left: 4px;
}
.cm-s-inner .cm-keyword {
color: #c792ea;
}
.cm-s-inner .cm-operator {
color: #89ddff;
}
.cm-s-inner .cm-variable-2 {
color: #eeffff;
}
.cm-s-inner .cm-variable-3,
.cm-s-inner .cm-type {
color: #f07178;
}
.cm-s-inner .cm-builtin {
color: #ffcb6b;
}
.cm-s-inner .cm-atom {
color: #f78c6c;
}
.cm-s-inner .cm-number {
color: #ff5370;
}
.cm-s-inner .cm-def {
color: #82aaff;
}
.cm-s-inner .cm-string {
color: #c3e88d;
}
.cm-s-inner .cm-string-2 {
color: #f07178;
}
.cm-s-inner .cm-comment {
color: #676e95;
}
.cm-s-inner .cm-variable {
color: #f07178;
}
.cm-s-inner .cm-tag {
color: #ff5370;
}
.cm-s-inner .cm-meta {
color: #ffcb6b;
}
.cm-s-inner .cm-attribute {
color: #c792ea;
}
.cm-s-inner .cm-property {
color: #c792ea;
}
.cm-s-inner .cm-qualifier {
color: #decb6b;
}
.cm-s-inner .cm-variable-3,
.cm-s-inner .cm-type {
color: #decb6b;
}
.cm-s-inner .cm-error {
color: rgba(255, 255, 255, 1);
background-color: #ff5370;
}
.cm-s-inner .CodeMirror-matchingbracket {
text-decoration: underline;
color: white !important;
}
.CodeMirror div.CodeMirror-cursor {
border-left: 1px solid rgb(239, 112, 96);
z-index: 3;
}
</style><title>百度网盘资料整理</title>
</head>
<body class='typora-export os-windows typora-export-show-outline typora-export-collapse-outline'><div class='typora-export-content'>
<div class="typora-export-sidebar"><div class="outline-content"><li class="outline-item-wrapper outline-h2 outline-item-open"><div class="outline-item"><span class="outline-expander"></span><a class="outline-label" href="#百度网盘资料整理">百度网盘资料整理</a></div><ul class="outline-children"><li class="outline-item-wrapper outline-h3 outline-item-single"><div class="outline-item"><span class="outline-expander"></span><a class="outline-label" href="#1对策府库的无纸化平台">1、对策府库的无纸化平台</a></div><ul class="outline-children"></ul></li><li class="outline-item-wrapper outline-h3 outline-item-single"><div class="outline-item"><span class="outline-expander"></span><a class="outline-label" href="#2物理实验报告">2、物理实验报告</a></div><ul class="outline-children"></ul></li><li class="outline-item-wrapper outline-h3 outline-item-single"><div class="outline-item"><span class="outline-expander"></span><a class="outline-label" href="#3实验课件">3、实验课件</a></div><ul class="outline-children"></ul></li><li class="outline-item-wrapper outline-h3 outline-item-single"><div class="outline-item"><span class="outline-expander"></span><a class="outline-label" href="#4基础学科网课合集">4、基础学科网课合集</a></div><ul class="outline-children"></ul></li><li class="outline-item-wrapper outline-h3 outline-item-single"><div class="outline-item"><span class="outline-expander"></span><a class="outline-label" href="#5编程网课和教程">5、编程网课和教程</a></div><ul class="outline-children"></ul></li><li class="outline-item-wrapper outline-h3 outline-item-single"><div class="outline-item"><span class="outline-expander"></span><a class="outline-label" href="#6c语言基础代码">6、C语言基础代码</a></div><ul class="outline-children"></ul></li><li class="outline-item-wrapper outline-h3 outline-item-single"><div class="outline-item"><span class="outline-expander"></span><a class="outline-label" href="#7专业软件及破解资源">7、专业软件及破解资源</a></div><ul class="outline-children"></ul></li><li class="outline-item-wrapper outline-h3 outline-item-single"><div class="outline-item"><span class="outline-expander"></span><a class="outline-label" href="#8个人推荐的几个软件">8、个人推荐的几个软件</a></div><ul class="outline-children"></ul></li><li class="outline-item-wrapper outline-h3 outline-item-single"><div class="outline-item"><span class="outline-expander"></span><a class="outline-label" href="#9更多资料">9、更多资料</a></div><ul class="outline-children"></ul></li></ul></li></div></div><div id='write' class=''><h2 id='百度网盘资料整理'><span>百度网盘资料整理</span></h2><p><span>本资料一部分为学长、同学搜集的资料,另一部分为本人之前自己搜集的资料,也包括一些自己写的作业、实验报告等,不一定完整,也不一定百分百正确,仅供参考。如有链接失效,可咨询本人。</span></p><div class='md-toc' mdtype='toc'><p class="md-toc-content" role="list"><span role="listitem" class="md-toc-item md-toc-h2" data-ref="n0"><a class="md-toc-inner" href="#百度网盘资料整理">百度网盘资料整理</a></span><span role="listitem" class="md-toc-item md-toc-h3" data-ref="n4"><a class="md-toc-inner" href="#1对策府库的无纸化平台">1、对策府库的无纸化平台</a></span><span role="listitem" class="md-toc-item md-toc-h3" data-ref="n9"><a class="md-toc-inner" href="#2物理实验报告">2、物理实验报告</a></span><span role="listitem" class="md-toc-item md-toc-h3" data-ref="n14"><a class="md-toc-inner" href="#3实验课件">3、实验课件</a></span><span role="listitem" class="md-toc-item md-toc-h3" data-ref="n18"><a class="md-toc-inner" href="#4基础学科网课合集">4、基础学科网课合集</a></span><span role="listitem" class="md-toc-item md-toc-h3" data-ref="n24"><a class="md-toc-inner" href="#5编程网课和教程">5、编程网课和教程</a></span><span role="listitem" class="md-toc-item md-toc-h3" data-ref="n59"><a class="md-toc-inner" href="#6c语言基础代码">6、C语言基础代码</a></span><span role="listitem" class="md-toc-item md-toc-h3" data-ref="n64"><a class="md-toc-inner" href="#7专业软件及破解资源">7、专业软件及破解资源</a></span><span role="listitem" class="md-toc-item md-toc-h3" data-ref="n78"><a class="md-toc-inner" href="#8个人推荐的几个软件">8、个人推荐的几个软件</a></span><span role="listitem" class="md-toc-item md-toc-h3" data-ref="n88"><a class="md-toc-inner" href="#9更多资料">9、更多资料</a></span></p></div><h3 id='1对策府库的无纸化平台'><span>1、对策府库的无纸化平台</span></h3><p><span>一位18级学长搜集整理的资料,包含各个专业大部分可能用到的参考书资料或教材</span></p><p><span>可以在【对策府库】公众号发送【无纸化】,阅读原文即可获取链接,仅限校内传播,请勿外传</span></p><p><span> </span><img src="https://my-typora-image-host.oss-cn-hangzhou.aliyuncs.com//img/image-20221021165403724.png" alt="image-20221021165403724" style="zoom: 67%;" /></p><p> </p><h3 id='2物理实验报告'><span>2、物理实验报告</span></h3><p><span>大部分实验都可以在【对策府库】和【学习屋】这两个公众号搜到,比如对策府库的链接:</span></p><p><a href='https://mp.weixin.qq.com/s/Et0_12K8xxh32B2dT_VVKg' target='_blank' class='url'>https://mp.weixin.qq.com/s/Et0_12K8xxh32B2dT_VVKg</a></p><p><span>这里额外放上我自己做过的十几个实验的实验报告,纯手抄:</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1RXw7WEc5c5OiJxa35hz0EA?pwd=36th' target='_blank' class='url'>https://pan.baidu.com/s/1RXw7WEc5c5OiJxa35hz0EA?pwd=36th</a><span> </span>
<span>提取码:36th </span></p><p> </p><h3 id='3实验课件'><span>3、实验课件</span></h3><p><span>包括计算机网络、计算机组成原理(组成与结构)、电子线路(数电)、微机系统的实验课件或代码,可能会有不全的地方</span></p><p><span>链接:</span><a href='https://pan.baidu.com/s/1nwXRQVY4r_tldpZWqRq2Lw?pwd=akhi' target='_blank' class='url'>https://pan.baidu.com/s/1nwXRQVY4r_tldpZWqRq2Lw?pwd=akhi</a><span> </span>
<span>提取码:akhi </span></p><p> </p><h3 id='4基础学科网课合集'><span>4、基础学科网课合集</span></h3><p><span>包括一位同学分享的部分网课,外加我自己在网上搜集整理出来的一部分,主要包括高数、线代、大物、模电、数电等大学基础课的网课资源</span></p><p><strong><span>猴博士系列:</span></strong>
<span>链接:</span><a href='https://pan.baidu.com/s/1EUUjyFtiFcDQh1rTfq3Rdg?pwd=ozai' target='_blank' class='url'>https://pan.baidu.com/s/1EUUjyFtiFcDQh1rTfq3Rdg?pwd=ozai</a><span> </span>
<span>提取码:ozai </span></p><p><strong><span>高斯课堂系列:</span></strong>
<span>链接:</span><a href='https://pan.baidu.com/s/1oJSMVxmmNP9lawls_RTWYg?pwd=ow25' target='_blank' class='url'>https://pan.baidu.com/s/1oJSMVxmmNP9lawls_RTWYg?pwd=ow25</a><span> </span>
<span>提取码:ow25 </span></p><p><span>当然,B站也有很多优质的免费网课资源,比如宋浩老师的高数/线代/概率论、西电任爱锋老师的数电课、东北大学的大物课等</span></p><p> </p><h3 id='5编程网课和教程'><span>5、编程网课和教程</span></h3><p><span>和上条一样,B站也有很多优质的编程网课资源(要不怎么外号B站大学呢),质量也很好,比如小甲鱼的系列视频、刘意老师的系列视频等</span></p><p><span>这里整理了自己持有的一部分编程类资源,来源于网络</span></p><p> </p><p><strong><span>暑假自学秘籍</span></strong><span>——山东大学几位热心的前辈大佬为当时大一新生暑假自学整理的编程教学文档,主要包括Java和Python两个篇章(不过西电大一先学的是C语言)</span>
<span>链接:</span><a href='https://pan.baidu.com/s/160x0kNMnkOZuoP8SoY8NZw?pwd=mfmm' target='_blank' class='url'>https://pan.baidu.com/s/160x0kNMnkOZuoP8SoY8NZw?pwd=mfmm</a><span> </span>
<span>提取码:mfmm </span></p><p> </p><p><strong><span>C/C++网课资源</span></strong><span>——主要包括三份网课,既有C语言零基础入门的教程,也有C++进阶教程,按需下载即可;还包括两本C语言相关的书籍</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1HC-VaeziKItQY8xl6B5d2w?pwd=p4yg' target='_blank' class='url'>https://pan.baidu.com/s/1HC-VaeziKItQY8xl6B5d2w?pwd=p4yg</a><span> </span>
<span>提取码:p4yg </span></p><p> </p><p><strong><span>Java网课资源</span></strong><span>——这个是马士兵老师的教程,后面还有一个阿里云盘的链接是黑马程序员的教程,马士兵老师这个更侧重于基础,黑马程序员那个从基础到深入的都有(后者足足100多个G)</span></p><p><span>链接:</span><a href='https://pan.baidu.com/s/1a5SjFqrKwRRjJ0HnNwx9KQ?pwd=hv9v' target='_blank' class='url'>https://pan.baidu.com/s/1a5SjFqrKwRRjJ0HnNwx9KQ?pwd=hv9v</a><span> </span>
<span>提取码:hv9v </span></p><p> </p><p><strong><span>数据结构与算法资源</span></strong><span>——一份数据结构视频教程(不过视频是用Java教学的,而西电的数据结构是用C语言教学的,但原理是相通的),一份严蔚敏版数据结构教材+配套题库,一份数据结构题库,一份力扣面试算法详解</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1CYFJWjNshSU2f3OCfR5o2A?pwd=xeue' target='_blank' class='url'>https://pan.baidu.com/s/1CYFJWjNshSU2f3OCfR5o2A?pwd=xeue</a><span> </span>
<span>提取码:xeue </span></p><p> </p><p><strong><span>Python网课资源</span></strong><span>——主要包括三份资源,各有特色,有基础也有实战</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1valMjaT7WNFUJCPT8mfwnA?pwd=ivnf' target='_blank' class='url'>https://pan.baidu.com/s/1valMjaT7WNFUJCPT8mfwnA?pwd=ivnf</a><span> </span>
<span>提取码:ivnf </span></p><p> </p><p><strong><span>MySQL数据库网课资源</span></strong><span>——2020年数据库零基础教学</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1Z0ZxXjLxpFK5en-kPUgEeQ?pwd=u6kj' target='_blank' class='url'>https://pan.baidu.com/s/1Z0ZxXjLxpFK5en-kPUgEeQ?pwd=u6kj</a><span> </span>
<span>提取码:u6kj </span></p><p> </p><p><strong><span>Java面试题合集</span></strong><span>——很多</span></p><p><span>链接:</span><a href='https://pan.baidu.com/s/1KhAJn6yveSxCosaYgJ1I0w?pwd=mkim' target='_blank' class='url'>https://pan.baidu.com/s/1KhAJn6yveSxCosaYgJ1I0w?pwd=mkim</a><span> </span>
<span>提取码:mkim </span></p><p> </p><p><strong><span>Web前端学习参考</span></strong><span>——一位大佬在Gitee上分享的收藏列表和思维导图,对学前端很有参考价值</span></p><p><span>链接:</span><a href='https://pan.baidu.com/s/13R-TSK6ukK9VTVqrq9RLjw?pwd=22s3' target='_blank' class='url'>https://pan.baidu.com/s/13R-TSK6ukK9VTVqrq9RLjw?pwd=22s3</a><span> </span>
<span>提取码:22s3 </span></p><p> </p><p><strong><span>60种编程语言资料合集</span></strong><span>——主要是各种电子书、面试题、题库等,粗略估计有五十个G</span></p><p><span>链接:</span><a href='https://pan.baidu.com/s/19f5rGvt-5xcrArPOqwhLXw?pwd=7c2z' target='_blank' class='url'>https://pan.baidu.com/s/19f5rGvt-5xcrArPOqwhLXw?pwd=7c2z</a><span> </span>
<span>提取码:7c2z </span></p><p> </p><p><strong><span>Linux系统教学</span></strong><span>——两个教程,都是在虚拟机上教学,一个用的CentOS,一个用的Ubuntu</span></p><p><span>链接:</span><a href='https://pan.baidu.com/s/1jZ7g2HyUSZYlYnLkwJ-1aQ?pwd=vn0s' target='_blank' class='url'>https://pan.baidu.com/s/1jZ7g2HyUSZYlYnLkwJ-1aQ?pwd=vn0s</a><span> </span>
<span>提取码:vn0s </span></p><p> </p><p><span>【下面这2个链接是阿里云盘的,文件太大不方便转移到百度网盘】</span></p><p><strong><span>Java网课资源</span></strong><span>——黑马程序员教程,文件大约有100多个G,自己按需下载对应的章节吧,只是学习Java基础的话只下载阶段一就够了(约8G)</span>
<span>链接:</span><a href='https://www.aliyundrive.com/s/qVuWsNDVcTi' target='_blank' class='url'>https://www.aliyundrive.com/s/qVuWsNDVcTi</a><span> 提取码: ob21</span></p><p> </p><p><strong><span>60种编程语言资料合集</span></strong><span>——和上面那个一样,只是这个是阿里云盘的链接</span></p><p><span>链接:</span><a href='https://www.aliyundrive.com/s/hht2UbzaoPV' target='_blank' class='url'>https://www.aliyundrive.com/s/hht2UbzaoPV</a><span> 提取码: ca16</span></p><p> </p><h3 id='6c语言基础代码'><span>6、C语言基础代码</span></h3><p><span>来自</span><strong><span>西电OJ系统</span></strong><span>的基础练习题,大部分是我大一上学期写的代码,所以可能会有一些思路过于复杂的代码,见谅</span></p><p><span>此外,因为题库每年都在扩充,所以这个应该是不全的</span></p><p><span>链接:</span><a href='https://pan.baidu.com/s/1-F8_2WffhqAv6WY64nncRA?pwd=getk' target='_blank' class='url'>https://pan.baidu.com/s/1-F8_2WffhqAv6WY64nncRA?pwd=getk</a><span> </span>
<span>提取码:getk </span></p><p> </p><h3 id='7专业软件及破解资源'><span>7、专业软件及破解资源</span></h3><p><strong><span>C/C++</span></strong><span>——含</span><strong><span>VS6.0、Dev C++、VScode</span></strong><span>三个软件。当然,其中的VScode不仅仅局限于C/C++,且需要较为繁琐的配置过程</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1F8Zzpj-QzQN6xG9PCwekkg?pwd=b4iy' target='_blank' class='url'>https://pan.baidu.com/s/1F8Zzpj-QzQN6xG9PCwekkg?pwd=b4iy</a><span> </span>
<span>提取码:b4iy </span></p><p> </p><p><strong><span>Java——IntelliJ IDEA</span></strong><span>,建议下载2020.2.4的那个版本,附带破解插件和使用教程</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1zW9d4NAfAEtA9KUkpwu-Tg?pwd=0hlh' target='_blank' class='url'>https://pan.baidu.com/s/1zW9d4NAfAEtA9KUkpwu-Tg?pwd=0hlh</a><span> </span>
<span>提取码:0hlh </span></p><p> </p><p><strong><span>Matlab R2021b</span></strong><span>——含破解安装教程</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1SeoAymwdaed4vGty2mLdRg?pwd=mm6j' target='_blank' class='url'>https://pan.baidu.com/s/1SeoAymwdaed4vGty2mLdRg?pwd=mm6j</a><span> </span>
<span>提取码:mm6j </span></p><p> </p><p><strong><span>Linux系统</span></strong><span>——第一个链接包含CentOS/Ubuntu(有两个版本,推荐较早的那个)这两类Linux系统的文件,可以直接通过VMware装载,还包括Xshell软件及破解,以及一部分课程实验相关的资源;第二个链接是VMware的安装包和验证码</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1p0GNskjz6UJ2fyHxgZgiEg?pwd=2inm' target='_blank' class='url'>https://pan.baidu.com/s/1p0GNskjz6UJ2fyHxgZgiEg?pwd=2inm</a><span> </span>
<span>提取码:2inm </span></p><p><span>链接:</span><a href='https://pan.baidu.com/s/1bPRA6fvMG9vH0f6pNMRMgQ?pwd=2n1y' target='_blank' class='url'>https://pan.baidu.com/s/1bPRA6fvMG9vH0f6pNMRMgQ?pwd=2n1y</a><span> </span>
<span>提取码:2n1y </span></p><p> </p><p><strong><span>Navicat 破解版</span></strong><span> —— MySQL等数据库最好用的管理工具之一,前提是电脑上已安装好对应的数据库</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1J2Vx9HOjxOxyEUQae4A6jA?pwd=7ocy' target='_blank' class='url'>https://pan.baidu.com/s/1J2Vx9HOjxOxyEUQae4A6jA?pwd=7ocy</a><span> </span>
<span>提取码:7ocy </span></p><p> </p><p><strong><span>Quartus ii 9.0 破解版</span></strong><span> —— 数电实验画电路图和进行仿真 必备的软件</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1aQMZGT0HFsu6O-Q_Qwwc7w?pwd=b2kd' target='_blank' class='url'>https://pan.baidu.com/s/1aQMZGT0HFsu6O-Q_Qwwc7w?pwd=b2kd</a><span> </span>
<span>提取码:b2kd </span></p><p> </p><h3 id='8个人推荐的几个软件'><span>8、个人推荐的几个软件</span></h3><p><strong><span>万彩办公大师</span></strong><span>——包含有大量办公功能,比如PDF合并、PDF分割、图片批量处理、屏幕录制……完全免费无广告</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1vSO51Uuwp3ar18rtWkrBKA?pwd=byxt' target='_blank' class='url'>https://pan.baidu.com/s/1vSO51Uuwp3ar18rtWkrBKA?pwd=byxt</a><span> </span>
<span>提取码:byxt </span></p><p> </p><p><strong><span>Typora破解版</span></strong><span>——逼格满满的Markdown文本编辑器,记笔记、写文档都不错,附带几份Typora主题,直接放到对应文件夹即可,这篇分享就是用这个写的</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1avv63jnXQEiyDrW_HMb0PQ?pwd=gyzl' target='_blank' class='url'>https://pan.baidu.com/s/1avv63jnXQEiyDrW_HMb0PQ?pwd=gyzl</a><span> </span>
<span>提取码:gyzl </span></p><p><span>链接:</span><a href='https://pan.baidu.com/s/18bnWJlWOp1ut4hs4tS9gfA?pwd=n3yz' target='_blank' class='url'>https://pan.baidu.com/s/18bnWJlWOp1ut4hs4tS9gfA?pwd=n3yz</a><span> </span>
<span>提取码:n3yz </span></p><p> </p><p><strong><span>去水印软件</span></strong><span>——十分简易但很实用的去水印软件</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1C4ZU7UitmWZWrdF2IBm8lA?pwd=dpxn' target='_blank' class='url'>https://pan.baidu.com/s/1C4ZU7UitmWZWrdF2IBm8lA?pwd=dpxn</a><span> </span>
<span>提取码:dpxn </span></p><p> </p><p><strong><span>Snipaste</span></strong><span>——简易实用的截图软件,比较有特色的是它支持多张图片“钉在桌面”的功能,唯一的缺陷是无法长截图</span>
<span>链接:</span><a href='https://pan.baidu.com/s/1bQEzMqrVQyPT7KoCh63E4w?pwd=qium' target='_blank' class='url'>https://pan.baidu.com/s/1bQEzMqrVQyPT7KoCh63E4w?pwd=qium</a><span> </span>
<span>提取码:qium </span></p><p> </p><h3 id='9更多资料'><span>9、更多资料</span></h3><p><span>附上其他一些资料</span></p><p><strong><span>简历模板</span></strong><span>——包含几十份简历模板,既有单页文档的模板,也有PPT模板</span></p><p><span>链接:</span><a href='https://pan.baidu.com/s/1UW5H7JLRIiinjPjtqB3S0g?pwd=cp38' target='_blank' class='url'>https://pan.baidu.com/s/1UW5H7JLRIiinjPjtqB3S0g?pwd=cp38</a><span> </span>
<span>提取码:cp38 </span></p><p> </p><p><strong><span>PPT模板</span></strong><span>——包含西电通用的几个模板,以及网上搜集的几个模板</span></p><p><span>链接:</span><a href='https://pan.baidu.com/s/1D6uBEQNfmu-XnGXANosuVg?pwd=9kn8' target='_blank' class='url'>https://pan.baidu.com/s/1D6uBEQNfmu-XnGXANosuVg?pwd=9kn8</a><span> </span>
<span>提取码:9kn8 </span></p><p> </p><p><span>还有更多学习资料见【反传奇协会】群内文件,已有分类</span></p><p> </p><p><span>音乐剧资源——部分由于版权问题放不出来(有10人访问限制,因此后面访问的人可能会链接无效)</span></p><p><span>链接:</span><a href='https://pan.baidu.com/s/1wPEEi9YM8F8qXCMsCurXSg' target='_blank' class='url'>https://pan.baidu.com/s/1wPEEi9YM8F8qXCMsCurXSg</a><span> </span>
<span>提取码:s5m5 </span></p><p> </p><p><span>手机小游戏合集——主要为单机破解手游</span></p><p><span>链接:</span><a href='https://rjc6.lanzoui.com/b04zj46kj' target='_blank' class='url'>https://rjc6.lanzoui.com/b04zj46kj</a></p><p> </p><p><span>使命召唤1——14合集</span></p><p><span>链接:</span><a href='https://pan.xunlei.com/s/VNChENgh8PUasr46VxL5HDJrA1#' target='_blank' class='url'>https://pan.xunlei.com/s/VNChENgh8PUasr46VxL5HDJrA1#</a><span> 提取码:rk2t</span></p><p> </p><hr /><p><em><strong><span>19级 某 整理 2022年11月24日13:55:29 更新</span></strong></em><span> </span></p><p> </p></div></div>
<script>(function(){var e=document.body.parentElement,t=[],n=null,i=document.body.classList.contains("typora-export-collapse-outline"),r=function(e,t,n){document.addEventListener(e,function(e){if(!e.defaultPrevented)for(var i=e.target;i&&i!=this;i=i.parentNode)if(i.matches(t)){!1===n.call(i,e)&&(e.preventDefault(),e.stopPropagation());break}},!1)};function o(){return e.scrollTop}r("click",".outline-expander",function(e){var t=this.closest(".outline-item-wrapper").classList;return t.contains("outline-item-open")?t.remove("outline-item-open"):t.add("outline-item-open"),d(),!1}),r("click",".outline-item",function(e){var t=this.querySelector(".outline-label");if(location.hash="#"+t.getAttribute("href"),i){var n=this.closest(".outline-item-wrapper").classList;n.contains("outline-item-open")||n.add("outline-item-open"),c(),n.add("outline-item-active")}});var a,s,l=function(){var e=o();n=null;for(var i=0;i<t.length&&t[i][1]-e<60;i++)n=t[i]},c=function(){document.querySelectorAll(".outline-item-active").forEach(e=>e.classList.remove("outline-item-active")),document.querySelectorAll(".outline-item-single.outline-item-open").forEach(e=>e.classList.remove("outline-item-open"))},d=function(){if(n){c();var e=document.querySelector('.outline-label[href="#'+(CSS.escape?CSS.escape(n[0]):n[0])+'"]');if(e)if(i){var t=e.closest(".outline-item-open>ul>.outline-item-wrapper");if(t)t.classList.add("outline-item-active");else{for(var r=(e=e.closest(".outline-item-wrapper")).parentElement.closest(".outline-item-wrapper");r;)r=(e=r).parentElement.closest(".outline-item-wrapper");e.classList.add("outline-item-active")}}else e.closest(".outline-item-wrapper").classList.add("outline-item-active")}};window.addEventListener("scroll",function(e){a&&clearTimeout(a),a=setTimeout(function(){l(),d()},300)});var u=function(){s=setTimeout(function(){!function(){t=[];var e=o();document.querySelector("#write").querySelectorAll("h1, h2, h3, h4, h5, h6").forEach(n=>{var i=n.getAttribute("id");t.push([i,e+n.getBoundingClientRect().y])})}(),l(),d()},300)};window.addEventListener("resize",function(e){s&&clearTimeout(s),u()}),u()})();</script></body>
</html>