-
Notifications
You must be signed in to change notification settings - Fork 9
/
sidebars.js
101 lines (100 loc) · 1.93 KB
/
sidebars.js
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
/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
module.exports = {
mySidebar: [{
type: 'doc',
id: 'all-intro', // 文档 ID
label: '开始', // 侧边栏标签
},
{
type: 'category',
label: 'html(18)',
items: [
"html/01第一个html",
"html/02LocalStorage与SessionStorage",
"html/03HTML DOM节点操作",
"html/04iframe框架及优缺点",
"html/05Cookie与Session",
"html/06HTML5新特性",
"html/07Canvas基础",
"html/08前端性能优化方案",
"html/09行内元素和块级元素",
"html/10Web Worker",
"html/11300ms点击延迟",
"html/12事件冒泡与阻止冒泡机制",
"html/13可替换元素和非替换元素",
"html/14HTML与XHTML区别",
"html/15常见的兼容性问题",
"html/16DOM和BOM的区别",
"html/17实现图片懒加载",
"html/18Shadow DOM的理解",
]
},
{
type: 'category',
label: 'css(1)',
items: [
"css/01第一个css"
]
},
{
type: 'category',
label: 'javascript(0)',
items: []
},
{
type: 'category',
label: 'react(0)',
items: []
},
{
type: 'category',
label: '微信小程序(0)',
items: []
},
{
type: 'category',
label: 'HTTP(0)',
items: []
},
{
type: 'category',
label: 'Browser(0)',
items: []
},
{
type: 'category',
label: 'Webpack(0)',
items: []
},
{
type: 'category',
label: 'git代码托管(0)',
items: []
},
{
type: 'category',
label: '数据结构与算法(0)',
items: []
},
{
type: 'category',
label: '设计模式(0)',
items: []
},
{
type: 'category',
label: '编码规范(0)',
items: []
},
{
type: 'category',
label: '杂谈(0)',
items: []
},
],
};