Skip to content

Commit e3a4b4c

Browse files
committed
Initialize, contains some notes
0 parents  commit e3a4b4c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+3082
-0
lines changed

LICENSE

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017 HcySunYang
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+1

docs/.nojekyll

Whitespace-only changes.

docs/README.md

+38

docs/asset/docute.css

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/asset/docute.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/asset/img/3.png

37.1 KB

docs/asset/img/3d.png

31.8 KB

docs/asset/img/3d33.png

11.9 KB

docs/asset/img/3dmr.png

32.1 KB

docs/asset/img/aaafuck.png

76 KB

docs/asset/img/after.png

65.8 KB

docs/asset/img/arrow.png

84.6 KB

docs/asset/img/before.png

45.9 KB

docs/asset/img/bianhuan2.png

14.5 KB

docs/asset/img/function.png

36.7 KB

docs/asset/img/he.png

135 KB

docs/asset/img/hou-plus.png

118 KB

docs/asset/img/hou.png

113 KB

docs/asset/img/input-output.png

79.5 KB

docs/asset/img/ji-xl.png

38.6 KB

docs/asset/img/jisuan.png

12.6 KB

docs/asset/img/juzhen.png

44.6 KB

docs/asset/img/mr1.png

20.1 KB

docs/asset/img/mr2.png

13.4 KB

docs/asset/img/mr3.png

11.4 KB

docs/asset/img/mr4.png

12.3 KB

docs/asset/img/number.png

26.7 KB

docs/asset/img/point.png

5.14 KB

docs/asset/img/qian.png

57.4 KB

docs/asset/img/sanjiao.png

17.3 KB

docs/asset/img/trans.png

38.8 KB

docs/asset/img/transform.png

63.8 KB

docs/asset/img/use-the-scene.png

86.5 KB

docs/asset/img/wanqu.png

72.1 KB

docs/asset/img/yiban.png

26.4 KB

docs/asset/img/yuanyin.png

30 KB

docs/asset/img/zbx.png

10.4 KB

docs/asset/img/zbx2.png

10.1 KB

docs/asset/img/zuobiao.png

5.96 KB

docs/asset/img/zuobiao2.png

5.48 KB

docs/asset/img/zuobiao3.png

28.4 KB

docs/index.html

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
7+
<title>docs</title>
8+
<link rel="stylesheet" href="./asset/docute.css">
9+
<style>
10+
.markdown-body h5 {
11+
font-size: .85em;
12+
color: #C43C3C;
13+
}
14+
.markdown-body h6 {
15+
font-size: .85em;
16+
color: #ff9917;
17+
}
18+
</style>
19+
</head>
20+
<body>
21+
<div id="app"></div>
22+
23+
<script src="./asset/docute.js"></script>
24+
<script>
25+
docute.init({
26+
nav: [
27+
{title: 'Home', path: '/'},
28+
{title: '语言基础', type: 'dropdown', items: [
29+
{title: '函数', path: '/note/basis/func'},
30+
{title: '数组', path: '/note/basis/array'},
31+
{title: '字符串', path: '/note/basis/string'},
32+
{title: 'cookie和storage', path: '/note/basis/cookie-storage'}
33+
]},
34+
{title: 'DOM', type: 'dropdown', items: [
35+
{title: 'DOM操作', path: '/note/dom/dom'},
36+
{title: 'DOM事件', path: '/note/dom/dom-event'},
37+
]},
38+
{title: 'CSS3', type: 'dropdown', items: [
39+
{title: 'transform', path: '/note/css3/transform'},
40+
{title: 'BFC', path: '/note/css3/bfc'}
41+
]},
42+
{title: '计算机原理', type: 'dropdown', items: [
43+
{title: '计算机是怎样跑起来的', path: '/note/'}
44+
]},
45+
{title: 'Git', type: 'dropdown', items: [
46+
{title: 'Git版本控制管理', path: '/note/'}
47+
]},
48+
{title: '网络', type: 'dropdown', items: [
49+
{title: 'get和post请求的区别', path: '/note/http/get-post'},
50+
{title: '从输入URL到页面加载完成的过程中都发生了什么事情?', path: '/note/http/url-render'},
51+
{title: 'HTTP权威指南', path: '/note/'}
52+
]},
53+
{title: '数学', type: 'dropdown', items: [
54+
{title: '向量/矩阵', path: '/note/math/matrix'}
55+
]},
56+
{title: '其他', type: 'dropdown', items: [
57+
{title: '性能', path: '/note/performance/performance'},
58+
{title: '兼容性', path: '/note/compatibility/compatibility'},
59+
{title: 'js编码规范 .eslitrc.js', path: '/note/specification/eslintrc'}
60+
]}
61+
],
62+
icons: [{
63+
icon: 'link',
64+
label: 'my blog',
65+
link: 'http://hcysun.me'
66+
}],
67+
tocVisibleDepth: 6
68+
})
69+
</script>
70+
</body>
71+
</html>

0 commit comments

Comments
 (0)