-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
412 lines (308 loc) · 16.6 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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
<html>
<head>
<meta charset="utf-8" />
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>
墨眉
</title>
<link rel="shortcut icon" href="https://feiyayshx.github.io/web-architecture/favicon.ico?v=1616549168662">
<!-- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous"> -->
<link href="https://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.10.0/katex.min.css">
<link rel="stylesheet" href="https://feiyayshx.github.io/web-architecture/styles/main.css">
<!-- js -->
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script>
<script src="https://feiyayshx.github.io/web-architecture/media/js/jquery.sticky-sidebar.min.js"></script>
<script src="https://cdn.bootcss.com/highlight.js/9.12.0/highlight.min.js"></script>
<script src="https://cdn.bootcss.com/moment.js/2.23.0/moment.min.js"></script>
</head>
<body>
<div class="main">
<div class="header">
<div class="nav">
<div class="logo">
<a href="https://feiyayshx.github.io/web-architecture">
<img class="avatar" src="https://feiyayshx.github.io/web-architecture/images/avatar.png?v=1616549168662" alt="">
</a>
<div class="site-title">
<h1>
墨眉
</h1>
</div>
</div>
<span class="menu-btn fa fa-align-justify"></span>
<div class="menu-container">
<ul>
<li>
<a href="https://feiyayshx.github.io/web-architecture" class="menu" target="_blank">
首页
</a>
</li>
<li>
<a href="https://feiyayshx.github.io/web-architecture/archives" class="menu">
归档
</a>
</li>
<li>
<a href="https://feiyayshx.github.io/web-architecture/tags" class="menu">
标签
</a>
</li>
<li>
<a href="https://feiyayshx.github.io/web-architecture/post/about" class="menu">
关于
</a>
</li>
</ul>
</div>
</div>
</div>
<script>
$(document).ready(function() {
$(".menu-btn").click(function() {
$(".menu-container").slideToggle();
});
$(window).resize(function() {
if (window.matchMedia('(min-width: 960px)').matches) {
$(".menu-container").css('display', 'block')
} else {
$(".menu-container").css('display', 'none')
}
});
});
</script>
<div id="main-content" class="post-container main-container">
<div id="content" class="main-container-left">
<article class="post i-card">
<h2 class="post-title">
<a href="https://feiyayshx.github.io/web-architecture/post/vue-he-xin-yuan-li-ji-kai-fa-zong-jie/">
Vue 核心原理及开发总结
</a>
</h2>
<div class="post-info">
<time class="post-time">2021-02-11 14:15</time>
</div>
<div class="post-article">
<div class="post-content">
<div class="post-content-content">
.babelrc 配置
{
// 预设,插件的集合
&quot;presets&quot;: [
// 把es6转化为es5
&quot;@babel/preset-env&quot;
]
}
</div>
<a class="btn btn-text" href="https://feiyayshx.github.io/web-architecture/post/vue-he-xin-yuan-li-ji-kai-fa-zong-jie/">Read More ~</a>
</div>
</div>
</article>
<article class="post i-card">
<h2 class="post-title">
<a href="https://feiyayshx.github.io/web-architecture/post/h5-kai-fa-chang-yong-gong-neng-shi-xian-fang-an-hui-zong/">
H5开发-常用功能实现方案汇总
</a>
</h2>
<div class="post-info">
<time class="post-time">2021-02-02 14:12</time>
</div>
<div class="post-article">
<div class="post-content">
<div class="post-content-content">
h5实现一键拨号的电话拨打功能
&lt;a href=&quot;tel:13764567708&quot;&gt;移动WEB页面一键拨打号码&lt;/a&gt;
// qq 浏览器兼容性不好
h5实现一键发送短信功能
&lt;a href=&quot;sms:13764567708&quot;&gt;移动WEB页面一键发送短信&lt;/a&gt;
// qq 浏览器兼容性不好
移动web页面自动探测电话号码
&lt;meta name=&quot;format-detection&quot; content=&quot;telephone=yes&quot;&gt;
&lt;meta http-equiv=&quot;x-rim-auto-match&quot; content=&quot;none&quot;&gt;
使用wtai协议进行拨打电话
&lt;a href=&quot;wtai://wp//mc;13764567708&quot;&gt;拨打10086 &lt;/a&gt;
&lt; a href=&quot;wtai://wp/ap;13764567708;&quot;&gt;将10086存储至电话簿 &lt;/a&gt;
h5页面调用高德h5地图
在调用处,打开该链接地址,传入参入
https://uri.amap.com/marker?position=116.473195,39.993253&amp;name=地址&amp;callnative=1
高德h5地图开发文档
</div>
<a class="btn btn-text" href="https://feiyayshx.github.io/web-architecture/post/h5-kai-fa-chang-yong-gong-neng-shi-xian-fang-an-hui-zong/">Read More ~</a>
</div>
</div>
</article>
<article class="post i-card">
<h2 class="post-title">
<a href="https://feiyayshx.github.io/web-architecture/post/h5-word/">
移动端布局相关概念及术语
</a>
</h2>
<div class="post-info">
<time class="post-time">2020-10-26 10:27</time>
<a href="https://feiyayshx.github.io/web-architecture/tag/yi-dong-duan/" class="post-tag i-tag
i-tag-info">
#移动端
</a>
</div>
<div class="post-article">
<div class="post-content">
<div class="post-content-abstract">
<p>✊一大堆概念来了,别再傻傻分不清什么是像素、分辨率、PPI、DPI、DPR、视口... 一文扫盲,不再迷茫!</p>
</div>
<a class="btn btn-text" href="https://feiyayshx.github.io/web-architecture/post/h5-word/">Read More ~</a>
</div>
</div>
</article>
<article class="post i-card">
<h2 class="post-title">
<a href="https://feiyayshx.github.io/web-architecture/post/svn-command/">
SVN命令
</a>
</h2>
<div class="post-info">
<time class="post-time">2020-10-09 13:56</time>
</div>
<div class="post-article">
<a href="https://feiyayshx.github.io/web-architecture/post/svn-command/" class="post-feature-image" style="background-image:url(https://feiyayshx.github.io/web-architecture/post-images/svn-command.jpg) ">
</a>
<div class="post-content">
<div class="post-content-abstract">
<p>👉svn 日常命令, mac 系统中操作svn命令行。</p>
</div>
<a class="btn btn-text" href="https://feiyayshx.github.io/web-architecture/post/svn-command/">Read More ~</a>
</div>
</div>
</article>
<article class="post i-card">
<h2 class="post-title">
<a href="https://feiyayshx.github.io/web-architecture/post/node-stream/">
Node系列之stream模块
</a>
</h2>
<div class="post-info">
<time class="post-time">2020-09-28 16:04</time>
<a href="https://feiyayshx.github.io/web-architecture/tag/node/" class="post-tag i-tag
i-tag-other_2">
#Node
</a>
</div>
<div class="post-article">
<div class="post-content">
<div class="post-content-abstract">
<p>👏 前言: 本文是学习Node时,对其中stream模块学习的一个笔记总结,主要是加强理解!</p>
</div>
<a class="btn btn-text" href="https://feiyayshx.github.io/web-architecture/post/node-stream/">Read More ~</a>
</div>
</div>
</article>
<article class="post i-card">
<h2 class="post-title">
<a href="https://feiyayshx.github.io/web-architecture/post/node-fs/">
Node系列之fs模块
</a>
</h2>
<div class="post-info">
<time class="post-time">2020-09-28 09:47</time>
<a href="https://feiyayshx.github.io/web-architecture/tag/node/" class="post-tag i-tag
i-tag-other_2">
#Node
</a>
</div>
<div class="post-article">
<div class="post-content">
<div class="post-content-abstract">
<p>👏 fs模块用于与文件系统交互,所有的文件系统操作都具有同步的、回调的、以及基于 promise 的形式。</p>
</div>
<a class="btn btn-text" href="https://feiyayshx.github.io/web-architecture/post/node-fs/">Read More ~</a>
</div>
</div>
</article>
<article class="post i-card">
<h2 class="post-title">
<a href="https://feiyayshx.github.io/web-architecture/post/node-buffer/">
Node系列之认识Buffer
</a>
</h2>
<div class="post-info">
<time class="post-time">2020-09-22 23:16</time>
<a href="https://feiyayshx.github.io/web-architecture/tag/node/" class="post-tag i-tag
i-tag-warning">
#Node
</a>
</div>
<div class="post-article">
<div class="post-content">
<div class="post-content-abstract">
<p>👉Buffer 对象用于表示固定长度的字节序列;<br>
⭐️Buffer 类是JavaScript 的Unit8Array 类的子类,全局变量;</p>
</div>
<a class="btn btn-text" href="https://feiyayshx.github.io/web-architecture/post/node-buffer/">Read More ~</a>
</div>
</div>
</article>
<article class="post i-card">
<h2 class="post-title">
<a href="https://feiyayshx.github.io/web-architecture/post/decimal-binary-conversion/">
Javascript之进制转换
</a>
</h2>
<div class="post-info">
<time class="post-time">2020-09-17 12:49</time>
<a href="https://feiyayshx.github.io/web-architecture/tag/yCfZPhSqN/" class="post-tag i-tag
i-tag-success">
#Javascript
</a>
</div>
<div class="post-article">
<div class="post-content">
<div class="post-content-abstract">
<p>👇Javascript中的进制转换方法:<code>toString()</code>、<code>parseInt()</code></p>
</div>
<a class="btn btn-text" href="https://feiyayshx.github.io/web-architecture/post/decimal-binary-conversion/">Read More ~</a>
</div>
</div>
</article>
<!-- 翻页 -->
</div>
<!-- -->
<div class="main-container-middle"></div>
<!-- -->
<div id="sidebar" class="main-container-right">
<!-- 个人信息 -->
<div class="id_card i-card">
<div class="id_card-avatar" style="background-image: url(https://feiyayshx.github.io/web-architecture/images/avatar.png?v=1616549168662)">
</div>
<h1 class="id_card-title">
墨眉
</h1>
<h2 class="id_card-description">
温故而知新
</h2>
<!-- -->
<div class="id_card-sns">
<!-- github -->
<!-- twitter -->
<!-- weibo -->
<!-- facebook -->
</div>
</div>
<!-- 公告栏 -->
</div>
</div>
<div class="site-footer">
Powered by <a href="https://github.com/getgridea/gridea" target="_blank">Gridea</a> |
<a class="rss" href="https://feiyayshx.github.io/web-architecture/atom.xml" target="_blank">RSS</a>
</div>
<script>
hljs.initHighlightingOnLoad()
</script>
</div>
<script>
$('#sidebar').stickySidebar({
topSpacing: 80,
// bottomSpacing: 60
});
</script>
</body>
</html>