-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
263 lines (183 loc) · 9.12 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
<link href="/images/blog.png" rel="shortcut icon">
<title>blog</title>
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/prism-atom-dark.css" type="text/css">
<link rel="stylesheet" href="/css/prism-line-numbers.css" type="text/css"></head>
<div class="main">
<header id="header">
<nav class="clear">
<button class="toggle">
<span class="icon-toggle icon"></span>
<span class="icon-toggle icon"></span>
<span class="icon-toggle icon"></span>
</button>
<a class="brand" href="/">Little life, little blog</a>
<div class="clear nar-wrap">
<ul class="nav clear">
<li>
<a href="/" title="Home">
<i class="fa fa-home"></i>
Home
</a>
</li>
<li>
<a href="/archives" title="Archives">
<i class="fa fa-archive"></i>
Archives
</a>
</li>
<li>
<a href="/categories" title="Categories">
<i class="fa fa-folder"></i>
Categories
</a>
</li>
<li>
<a href="/tags" title="Tags">
<i class="fa fa-tags"></i>
Tags
</a>
</li>
</ul>
</div>
</nav>
</header>
<main id="index">
<article class="article">
<header>
<h3>
<a href="/2017/07/30/javaScript数据类型/">javaScript数据类型</a>
<a href="/tags/基础/"><span ><i class="fa fa-tags"></i>基础</a>
</h3>
</header>
<section>
<p>
<p>字符串(String)、数字(Number)、布尔(Boolean)、空(Null)、未定义(Undefined)、对象(Object)、数组(Array)、函数对象(Function)、标志 (ECMAScript 6 新增”Symbol“)</p>
<p>前五种为基本数据类型,数组(Array)、函数对象(Function)也属于对象(Object)。</p>
</p>
<a class = "read-more" href="/2017/07/30/javaScript数据类型/"><i class="fa fa-long-arrow-right"></i> <span>阅读全文</span></a>
</section>
<footer>
<time datetime="2017-09-30">2017-07-30</time>
<a href="/categories/前端/">前端、</a>
</footer>
</article>
<article class="article">
<header>
<h3>
<a href="/2017/07/30/Webpack Learning Notes/">Webpack学习笔记</a>
<a href="/tags/Webpack/"><span ><i class="fa fa-tags"></i>Webpack</a>
</h3>
</header>
<section>
<p>
<p>Webpack 是当下最热门的前端资源模块化管理和打包工具。它可以将许多松散的模块按照依赖和规则打包成符合生产环境部署的前端资源。还可以将按需加载的模块进行代码分隔,等到实际需要的时候再异步加载。通过 loader 的转换,任何形式的资源都可以视作模块,比如 CommonJs 模块、 AMD 模块、 ES6 模块、CSS、图片、 JSON、Coffeescript、 LESS 等。</p>
</p>
<a class = "read-more" href="/2017/07/30/Webpack Learning Notes/"><i class="fa fa-long-arrow-right"></i> <span>阅读全文</span></a>
</section>
<footer>
<time datetime="2017-09-30">2017-07-30</time>
<a href="/categories/前端/">前端、</a>
</footer>
</article>
<article class="article">
<header>
<h3>
<a href="/2017/07/24/vue双向绑定分析/">vue 双向绑定分析</a>
<a href="/tags/vue/"><span ><i class="fa fa-tags"></i>vue</a>
</h3>
</header>
<section>
<p>
<p>MVVM 是 Model-View-ViewModel 的缩写,它是一种基于前端开发的架构模式,其核心是提供对View 和 ViewModel 的双向数据绑定,这使得ViewModel 的状态改变可以自动传递给 View,即所谓的数据双向绑定。</p>
<p>Vue.js 是一个提供了 MVVM 风格的双向数据绑定的 Javascript 库,专注于View 层。它的核心是 MVVM 中的 VM,也就是 ViewModel。 ViewModel负责连接 View 和 Model,保证视图和数据的一致性,这种轻量级的架构让前端开发更加高效、便捷。</p>
</p>
<a class = "read-more" href="/2017/07/24/vue双向绑定分析/"><i class="fa fa-long-arrow-right"></i> <span>阅读全文</span></a>
</section>
<footer>
<time datetime="2017-09-30">2017-07-24</time>
<a href="/categories/前端/">前端、</a>
</footer>
</article>
<article class="article">
<header>
<h3>
<a href="/2017/07/20/koa2-pre/">koa2总结</a>
<a href="/tags/Node-js/"><span ><i class="fa fa-tags"></i>Node.js</a>
</h3>
</header>
<section>
<p>
<p>koa 是由 Express 原班人马打造的,致力于成为一个更小、更富有表现力、更健壮的 Web 框架。使用 koa 编写 web 应用,通过组合不同的 generator,可以免除重复繁琐的回调函数嵌套,并极大地提升错误处理的效率。koa 不在内核方法中绑定任何中间件,它仅仅提供了一个轻量优雅的函数库,使得编写 Web 应用变得得心应手。</p>
</p>
<a class = "read-more" href="/2017/07/20/koa2-pre/"><i class="fa fa-long-arrow-right"></i> <span>阅读全文</span></a>
</section>
<footer>
<time datetime="2017-09-30">2017-07-20</time>
<a href="/categories/前端/">前端、</a>
</footer>
</article>
<div class="page-nav clear">
<a class="extend prev" rel="prev" href="/">« Prev</a><a class="page-number" href="/">1</a><span class="page-number current">2</span>
</div>
</main>
<div >
<div id="tog-side" class="btn-gp"><i id="tog-icon" class="fa fa-user"></i></div>
<div id="to-top" class="btn-gp"><i class="fa fa-arrow-up"></i></div>
</div>
</div>
<aside class="sidebar">
<div class="sidebar-inner">
<section class="site-overview sidebar-panel sidebar-panel-active">
<div class="site-author">
<img class="site-author-image" src="/images/profile_picture.jpeg" >
<p class="site-author-name" >汤俊健</p>
<p class="site-description">graduated form South China Normal University, will work for R & D Center of CTCC as a Front-End Engineer in 2018.</p>
</div>
<div class="site-state" >
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">9</span>
<span class="site-state-item-name">Articles</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories/index.html">
<span class="site-state-item-count">2</span>
<span class="site-state-item-name">Categories</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/index.html">
<span class="site-state-item-count">5</span>
<span class="site-state-item-name">Tags</span>
</a>
</div>
</div>
<div class="social-contact" >
<ul>
<li> <a href="https://github.com/freshtang"><i class="fa fa-github fa-2x"></i></a></li>
<li> <a href="https://weibo.com/u/2208953612"><i class="fa fa-weibo fa-2x"></i></a></li>
<li> <a href="11514376"><i class="fa fa-qq fa-2x"></i></a></li>
<li> <a href="junjiant"><i class="fa fa-wechat fa-2x"></i></a></li>
<li> <a href="mailto:[email protected]"><i class="fa fa-envelope fa-2x"></i></a></li>
<li> <a href="t"><i class="fa fa-twitter fa-2x"></i></a></li>
</ul>
</div>
</section>
</div>
</aside>
<footer id="footer">
© 2017 汤俊健
<br>
Powered by <a href="https://hexo.io/" target="_blank">Hexo</a>. Theme by <a href="https://github.com/freshtang" target="_blank">freshtang</a>
</footer>
</body>
<script src="/js/index.js"></script>
</html>