-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
388 lines (245 loc) · 11.8 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
<!DOCTYPE HTML>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>lyuan blog</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=3, minimum-scale=1">
<meta name="author" content="lyuan">
<link rel="icon" href="/img/favicon.ico">
<link rel="apple-touch-icon" href="/img/pacman.jpg">
<link rel="apple-touch-icon-precomposed" href="/img/pacman.jpg">
<link rel="stylesheet" href="/css/style.css" type="text/css">
</head>
<body>
<header>
<div>
<div id="imglogo">
<a href="/"><img src="/img/logo.svg" alt="lyuan blog" title="lyuan blog"/></a>
</div>
<div id="textlogo">
<h1 class="site-name"><a href="/" title="lyuan blog">lyuan blog</a></h1>
<h2 class="blog-motto"></h2>
</div>
<div class="navbar"><a class="navbutton navmobile" href="#" title="菜单">
</a></div>
<nav class="animated">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/archives">Archives</a></li>
<li><a href="/about">About</a></li>
<li><a href="/labs">Labs</a></li>
<li>
<form class="search" action="//google.com/search" method="get" accept-charset="utf-8">
<label>Search</label>
<input type="text" id="search" name="q" autocomplete="off" maxlength="20" placeholder="搜索" />
<input type="hidden" name="q" value="site:qingxiangchayun.github.io">
</form>
</li>
</ul>
</nav>
</div>
</header>
<div id="container">
<div id="main">
<section class="post" itemscope itemprop="blogPost">
<a href="/2015/05/21/git/" title="Git 基本配置及常用命令" itemprop="url">
<h1 itemprop="name">Git 基本配置及常用命令</h1>
<p itemprop="description" >基础配置
git config user.name xxx
git config --global user.name xxx
git config --system user.name xxx
忽略不同系统下的空格(^M)
window 换行符 \r\n
Linux </p>
<time datetime="2015-05-21T08:37:34.000Z" itemprop="datePublished">5月 21 2015</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2015/04/16/Relationships-between-display-position-and-float/" title="css学习之display、position、float之间的关系" itemprop="url">
<h1 itemprop="name">css学习之display、position、float之间的关系</h1>
<p itemprop="description" >以前在工作中写css时,经常写到或看到这样的代码 .box{display:block;float:left;position:reliative/absoulte;}
这样写元素会如何表现?自己也不清楚,反正只要是各个浏览器上表现正常,是自己想要的效果,便不再深究了。这种只以结</p>
<time datetime="2015-04-16T08:09:09.000Z" itemprop="datePublished">4月 16 2015</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2015/04/16/bfc/" title="css学习之BFC" itemprop="url">
<h1 itemprop="name">css学习之BFC</h1>
<p itemprop="description" >Formatting context
Formatting context 是 W3C CSS2.1 规范中的一个概念。它是页面中的一块渲染区域,并且有一套渲染规则,它决定了其子元素将如何定位,以及和其他元素的关系和相互作用。最常见的 Formatting context 有 B</p>
<time datetime="2015-04-16T03:39:24.000Z" itemprop="datePublished">4月 16 2015</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2015/04/15/collapsing-margins/" title="css学习之margin外边距叠加" itemprop="url">
<h1 itemprop="name">css学习之margin外边距叠加</h1>
<p itemprop="description" >Collapsing margins:外边距折叠,指的是毗邻的两个或多个外边距 (margin) 会合并成一个外边距。
margin外边距叠加
这两个或多个外边距没有被非空内容、padding、border 或 clear 分隔开。
这些 margin 都处于普通流中
mar</p>
<time datetime="2015-04-15T10:06:12.000Z" itemprop="datePublished">4月 15 2015</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2015/04/14/inline-block/" title="css学习之inline-block" itemprop="url">
<h1 itemprop="name">css学习之inline-block</h1>
<p itemprop="description" >inline-block
平时写代码,经常使用inline-block,但总觉得对inline-block了解还是不够深刻,所以写一篇blog,总结一下inline-block的知识点。
什么是inline-block
This value causes an element </p>
<time datetime="2015-04-14T03:04:54.000Z" itemprop="datePublished">4月 14 2015</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2015/01/29/RegExp-test/" title="正则中的一些坑" itemprop="url">
<h1 itemprop="name">正则中的一些坑</h1>
<p itemprop="description" >正则 test 中的一个问题
今天做项目中,发现个问题,记录一下。
看个例子:
为什么第一次console时,不都是true。WHY!!!
正则表达式
先来了解一下正则表达式直接量语法
1/pattern/attributes
创建 RegExp 对象的语法:
1new Reg</p>
<time datetime="2015-01-29T10:08:38.000Z" itemprop="datePublished">1月 29 2015</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2015/01/22/jQuery-source-code/" title="jquery源码学习之选择器" itemprop="url">
<h1 itemprop="name">jquery源码学习之选择器</h1>
<p itemprop="description" >jquery.fn.init
了解jquery()
用法
jQuery( selector [, context ] )
jQuery( selector [, context ] )
jQuery( element )
jQuery( elementArray )
jQuer</p>
<time datetime="2015-01-22T09:13:48.000Z" itemprop="datePublished">1月 22 2015</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2015/01/22/jquery/" title="jquery源码学习之$" itemprop="url">
<h1 itemprop="name">jquery源码学习之$</h1>
<p itemprop="description" >首先来看一下jquery是什么?即学习一下$。
123456// Define a local copy of jQuery// 定义一个jQuery副本jQuery = function( selector, context ) { // The jQuery object i</p>
<time datetime="2015-01-22T09:13:29.000Z" itemprop="datePublished">1月 22 2015</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2015/01/22/jquery-static-methods/" title="jquery源码学习之静态方法" itemprop="url">
<h1 itemprop="name">jquery源码学习之静态方法</h1>
<p itemprop="description" >工具方法列表
$.each
$.trim
$.makeArray
$.inArray
$.merge
$.grep
$.map
$.proxy
$.each
12345678910111213141516171819202122232425262728293031323334</p>
<time datetime="2015-01-22T09:12:47.000Z" itemprop="datePublished">1月 22 2015</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2015/01/22/jquery-deferred/" title="jquery源码学习之deferred" itemprop="url">
<h1 itemprop="name">jquery源码学习之deferred</h1>
<p itemprop="description" >deferred API
延迟对象,在jQuery的1.5引入,是通过调用jQuery.Deferred()方法创建一个可链式调用的工具对象。 它可以注册多个回调到回调队列, 调用回调队列,准备代替任何同步或异步函数的成功或失败状态。
jQuery.Deferred()
一个构造</p>
<time datetime="2015-01-22T09:12:03.000Z" itemprop="datePublished">1月 22 2015</time>
</a>
</section>
<nav id="page-nav" class="clearfix">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="page-number" href="/page/3/">3</a><a class="extend next" rel="next" href="/page/2/">Next »</a>
</nav>
</div>
<div class="openaside"><a class="navbutton" href="#" title="显示侧边栏"></a></div>
<div id="asidepart">
<div class="closeaside"><a class="closebutton" href="#" title="隐藏侧边栏"></a></div>
<aside class="clearfix">
<div class="tagslist">
<p class="asidetitle">标签</p>
<ul class="clearfix">
<li><a href="/tags/css/" title="css">css<sup>4</sup></a></li>
<li><a href="/tags/git/" title="git">git<sup>1</sup></a></li>
<li><a href="/tags/hexo/" title="hexo">hexo<sup>1</sup></a></li>
<li><a href="/tags/jQuery/" title="jQuery">jQuery<sup>7</sup></a></li>
<li><a href="/tags/js/" title="js">js<sup>6</sup></a></li>
<li><a href="/tags/requirejs/" title="requirejs">requirejs<sup>1</sup></a></li>
</ul>
</div>
<div class="archiveslist">
<p class="asidetitle"><a href="/archives">归档</a></p>
<ul class="archive-list"><li class="archive-list-item"><a class="archive-list-link" href="/archives/2015/05/">May 2015</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2015/04/">April 2015</a><span class="archive-list-count">4</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2015/01/">January 2015</a><span class="archive-list-count">8</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2014/12/">December 2014</a><span class="archive-list-count">4</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2014/11/">November 2014</a><span class="archive-list-count">2</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2014/10/">October 2014</a><span class="archive-list-count">2</span></li></ul>
</div>
<div class="linkslist">
<p class="asidetitle">友情链接</p>
<ul>
<li><a href="http://hexo.io" target="_blank" title="Hexo">Hexo</a></li>
</ul>
</div>
</aside>
</div>
</div>
<footer><div id="footer" >
<div class="social-font clearfix">
<a href="http://weibo.com/lyuanfe" target="_blank" title="weibo"></a>
<a href="https://github.com/qingxiangchayun" target="_blank" title="github"></a>
</div>
<p class="copyright">Powered by <a href="http://hexo.io" target="_blank" title="hexo">hexo</a> and Theme by <a href="https://github.com/A-limon/pacman" target="_blank" title="Pacman">Pacman</a> © 2015
<a href="http://qingxiangchayun.github.io" target="_blank" title="lyuan">lyuan</a>
</p>
</div>
</footer>
<script src="/js/jquery-2.1.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.navbar').click(function(){
$('header nav').toggleClass('shownav');
});
var myWidth = 0;
function getSize(){
if( typeof( window.innerWidth ) == 'number' ) {
myWidth = window.innerWidth;
} else if( document.documentElement && document.documentElement.clientWidth) {
myWidth = document.documentElement.clientWidth;
};
};
var m = $('#main'),
a = $('#asidepart'),
c = $('.closeaside'),
o = $('.openaside');
$(window).resize(function(){
getSize();
if (myWidth >= 1024) {
$('header nav').removeClass('shownav');
}else
{
m.removeClass('moveMain');
a.css('display', 'block').removeClass('fadeOut');
o.css('display', 'none');
}
});
c.click(function(){
a.addClass('fadeOut').css('display', 'none');
o.css('display', 'block').addClass('fadeIn');
m.addClass('moveMain');
});
o.click(function(){
o.css('display', 'none').removeClass('beforeFadeIn');
a.css('display', 'block').removeClass('fadeOut').addClass('fadeIn');
m.removeClass('moveMain');
});
$(window).scroll(function(){
o.css("top",Math.max(80,260-$(this).scrollTop()));
});
});
</script>
</body>
</html>