-
Notifications
You must be signed in to change notification settings - Fork 295
/
index.html
1339 lines (411 loc) · 41.7 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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Here. There.</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=3, minimum-scale=1">
<meta name="author" content="被删">
<meta name="description" content="html5, js, angularjs, jQuery, 前端">
<link rel="alternate" href="/atom.xml" title="Here. There." type="application/atom+xml">
<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">
<script type="text/javascript">
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?3d902de4a19cf2bf179534ffd2dd7b7f";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<meta name="generator" content="Hexo 6.3.0"></head>
<body>
<header>
<div>
<div id="imglogo">
<a href="/"><img src="/img/sun.png" alt="Here. There." title="Here. There."/></a>
</div>
<div id="textlogo">
<h1 class="site-name"><a href="/" title="Here. There.">Here. There.</a></h1>
<h2 class="blog-motto">Love ice cream. Love sunshine. Love life. Love the world. Love myself. Love you.</h2>
</div>
<div class="navbar"><a class="navbutton navmobile" href="#" title="菜单">
</a></div>
<nav class="animated">
<ul>
<li><a href="/">首页</a></li>
<li><a target="_blank" rel="noopener" href="https://github.com/godbasin/godbasin.github.io">所有文章</a></li>
<li><a href="/archives">归档</a></li>
<li><a href="/categories">分类</a></li>
<li><a href="https://godbasin.github.io/front-end-playground">前端游乐场</a></li>
<li><a href="/about">关于我</a></li>
</ul>
</nav>
</div>
</header>
<div id="container">
<div id="main" class="all-list-box">
<section class="post" itemscope itemprop="blogPost">
<a href="/2024/12/27/front-end-performance-code-detail/" title="前端性能优化--代码习惯" itemprop="url">
<h1 itemprop="name">前端性能优化--代码习惯</h1>
<p itemprop="description" >大多数情况下,前端很少遇到性能瓶颈。但如果在大型前端项目、数据量百万千万的场景下,有时候一些毫不起眼的代码习惯也可能会带来性能问题。
今天来简单介绍几种,大家在写代码的时候也可以注意。
代码细节与性能减少函数拆解很多时候,为了提高代码复用率以及提升代码可读性,我们习惯地将一些相同</p>
<time datetime="2024-12-27T15:25:12.000Z" itemprop="datePublished">2024-12-27</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2024/11/06/front-end-performance-flyweight-pattern/" title="前端性能优化--享元模式" itemprop="url">
<h1 itemprop="name">前端性能优化--享元模式</h1>
<p itemprop="description" >之前讲到性能优化,大多数介绍的都是耗时上的一些优化,比如页面打开更快、用户交互响应更快等。不过,在最开始的《前端性能优化–归纳篇》一文中有说过,前端性能优化可以从两个角度来衡量:时间和空间,今天介绍的享元模式则用于空间下内存占用的优化。
享元模式享元是一种设计模式,通过共享对象的</p>
<time datetime="2024-11-06T12:51:10.000Z" itemprop="datePublished">2024-11-06</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2024/10/27/tech-debt/" title="项目中的技术债务" itemprop="url">
<h1 itemprop="name">项目中的技术债务</h1>
<p itemprop="description" >身为一名程序员,我们经常会调侃自己每天的工作就是在屎山上拉屎。这里的屎山还有一个更好的名称,叫做技术债务。
技术债务是怎么产生的我参加过许多不同的项目,而基本上每个项目都会存在或多或少的历史债务。实际上,愿意给到资源去解决历史债务的团队,更是少之又少。
业务功能的快速迭代,往往意</p>
<time datetime="2024-10-27T13:12:22.000Z" itemprop="datePublished">2024-10-27</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2024/10/15/front-end-performance-jank-monitor/" title="前端性能优化--卡顿链路追踪" itemprop="url">
<h1 itemprop="name">前端性能优化--卡顿链路追踪</h1>
<p itemprop="description" >我们在上一篇《前端性能优化–卡顿心跳检测》一文中介绍过基于requestAnimationFrame的卡顿的检测方案实现,这一篇文章我们将会介绍基于该心跳检测方案,要怎么实现链路追踪,来找到产生卡顿的地方。
卡顿监控实现上一篇我们提到的心跳检测,实现的功能很简单,就是卡顿和心跳事</p>
<time datetime="2024-10-15T14:17:25.000Z" itemprop="datePublished">2024-10-15</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2024/09/03/front-end-performance-array-performance/" title="前端性能优化--JavaScript 数组解构" itemprop="url">
<h1 itemprop="name">前端性能优化--JavaScript 数组解构</h1>
<p itemprop="description" >之前在给大家介绍性能相关内容的时候,经常说要给大家讲一些更具体的案例,而不是大的解决方案。
这不,最近刚查到一个数组的性能问题,来给大家分享一下~
数组解构的性能问题ES6 的出现,让前端开发小伙伴们着实高效工作了一番,我们常常会使用解构的方式拼接数组,比如:
1234// 浅拷</p>
<time datetime="2024-09-03T13:37:22.000Z" itemprop="datePublished">2024-09-03</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2024/08/05/front-end-performance-task-schedule/" title="前端性能优化--任务管理和调度" itemprop="url">
<h1 itemprop="name">前端性能优化--任务管理和调度</h1>
<p itemprop="description" >对于一个前端应用,最理想的性能便是任何用户的交互都不会被阻塞、且能及时得到响应。
显然,当我们应用程序里需要处理一些大任务计算的时候,这个理想状态是难以达到的。不过,努力去接近也是我们可以尽量去做好的。
任务调度与性能任务调度的出现,基本上是为了更合理地使用和分配资源。在前端应用</p>
<time datetime="2024-08-05T15:39:12.000Z" itemprop="datePublished">2024-08-05</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2024/07/17/front-end-performance-r-tree/" title="前端性能优化--R 树的使用" itemprop="url">
<h1 itemprop="name">前端性能优化--R 树的使用</h1>
<p itemprop="description" >听说程序员里存在一个鄙视链,而前端则在鄙视链的最底端。这是因为以前大多数的前端工作内容都相对简单(或许现在也是如此),在大多数人的眼中,前端只需要写写 HTML 和 CSS,编写页面样式便完成了。
如今尽管前端的能力越来越强了,涉及到代码构建、编译等,但依然有十分丰富且成熟的工具</p>
<time datetime="2024-07-17T15:01:23.000Z" itemprop="datePublished">2024-07-17</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2024/06/04/front-end-performance-jank-heartbeat-monitor/" title="前端性能优化--卡顿心跳检测" itemprop="url">
<h1 itemprop="name">前端性能优化--卡顿心跳检测</h1>
<p itemprop="description" >对于重前端计算的网页来说,性能问题天天都冒出来,而操作卡顿可能会直接劝退用户。</p>
<time datetime="2024-06-04T14:00:01.000Z" itemprop="datePublished">2024-06-04</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2024/05/02/front-end-performance-jank-detect/" title="前端性能优化--用户卡顿检测" itemprop="url">
<h1 itemprop="name">前端性能优化--用户卡顿检测</h1>
<p itemprop="description" >前面跟大家介绍过前端性能卡顿的检测和监控,其中提到了requestAnimationFrame心跳检测等方式来检测代码执行耗时,从而判断是否存在卡顿。
而实际上我们观察一些用户反馈,会发现这样检测的效果并不是很理想。
用户感觉的“卡”一般来说,我们会根据代码检测的任务耗时超过一定</p>
<time datetime="2024-05-02T15:35:25.000Z" itemprop="datePublished">2024-05-02</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2024/04/03/front-end-performance-long-task/" title="让你的长任务在 50 毫秒内结束" itemprop="url">
<h1 itemprop="name">让你的长任务在 50 毫秒内结束</h1>
<p itemprop="description" >虽然之前有跟大家分享过不少卡顿相关的内容,实际上网页里卡顿的产生基本上都是由于长任务导致的。当然,能阻塞用户操作的,我们说的便是主线程上的长任务。
浏览器中的长任务可能是 JavaScript 的编译、解析 HTML 和 CSS、渲染页面,或者是我们编写的 JavaScript </p>
<time datetime="2024-04-03T12:28:02.000Z" itemprop="datePublished">2024-04-03</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2024/03/17/front-end-performance-metric/" title="前端性能优化--数据指标体系" itemprop="url">
<h1 itemprop="name">前端性能优化--数据指标体系</h1>
<p itemprop="description" >常常进行前端性能优化的小伙伴们会发现,实际开发中性能优化总是阶段性的:页面加载很慢/卡顿 -&gt; 性能优化 -&gt; 堆叠需求 -&gt; 加载慢/卡顿 -&gt; 性能优化。
这是因为我们的项目往往也是阶段性的:快速功能开发 -&gt; 出现性能问题 -&gt; 优化性能</p>
<time datetime="2024-03-17T13:28:33.000Z" itemprop="datePublished">2024-03-17</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2024/02/21/front-end-performance-about-performanceobserver/" title="有趣的 PerformanceObserver" itemprop="url">
<h1 itemprop="name">有趣的 PerformanceObserver</h1>
<p itemprop="description" >之前在研究小伙伴遗留代码的时候,发现了PerformanceObserver这玩意,不看不知道,越看越有意思。
其实这个 API 出了挺久了,机缘巧合下一直没有接触到,直到最近开始深入研究前端性能情况。
PerformanceObserver其实单看PerformanceObse</p>
<time datetime="2024-02-21T14:12:23.000Z" itemprop="datePublished">2024-02-21</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2024/01/21/front-end-performance-no-response-solution/" title="前端性能优化--卡顿的监控和定位" itemprop="url">
<h1 itemprop="name">前端性能优化--卡顿的监控和定位</h1>
<p itemprop="description" >卡顿大概是前端遇到的问题的最棘手的一个,尤其是卡顿产生的时候常常无法进行其他操作,甚至控制台也打开不了。</p>
<time datetime="2024-01-21T13:21:06.000Z" itemprop="datePublished">2024-01-21</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2023/12/25/learn-front-end-develop-from-interview/" title="从面试角度了解前端基础知识体系" itemprop="url">
<h1 itemprop="name">从面试角度了解前端基础知识体系</h1>
<p itemprop="description" >这两年大裁员过后,带来了一系列的人员变动,常常面临着不受宠的被辞退了,能干的人跑了,剩下的人在努力维护着项目。于是乎老板们才发现人好像又不够了,然后又开始各种招人。机会一直都有,重要的还是得努力提升自己的能力,才能在这场战斗中存活下来。
前端开发中相对基础的一些内容,主要围绕着 </p>
<time datetime="2023-12-25T12:55:22.000Z" itemprop="datePublished">2023-12-25</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2023/11/25/render-engine-element-and-event/" title="复杂渲染引擎架构与设计--8.元素与事件" itemprop="url">
<h1 itemprop="name">复杂渲染引擎架构与设计--8.元素与事件</h1>
<p itemprop="description" >前面提到了渲染引擎的几种渲染方式,如果我们要在与用户交互的过程中识别到具体的元素,又该如何处理呢?</p>
<time datetime="2023-11-25T13:42:02.000Z" itemprop="datePublished">2023-11-25</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><span class="space">…</span><a class="page-number" href="/page/24/">24</a><a class="extend next" rel="next" href="/page/2/">Next &raquo;</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="archiveslist">
<p class="asidetitle">最近文章</p>
<ul class="archive-list">
<li class="archive-list-item">
<a class="archive-list-link" href="/2024/12/27/front-end-performance-code-detail/" title="前端性能优化--代码习惯">前端性能优化--代码习惯...</a>
</li>
<li class="archive-list-item">
<a class="archive-list-link" href="/2024/11/06/front-end-performance-flyweight-pattern/" title="前端性能优化--享元模式">前端性能优化--享元模式...</a>
</li>
<li class="archive-list-item">
<a class="archive-list-link" href="/2024/10/27/tech-debt/" title="项目中的技术债务">项目中的技术债务</a>
</li>
<li class="archive-list-item">
<a class="archive-list-link" href="/2024/10/15/front-end-performance-jank-monitor/" title="前端性能优化--卡顿链路追踪">前端性能优化--卡顿链路追踪...</a>
</li>
<li class="archive-list-item">
<a class="archive-list-link" href="/2024/09/03/front-end-performance-array-performance/" title="前端性能优化--JavaScript 数组解构">前端性能优化--JavaScript...</a>
</li>
<li class="archive-list-item">
<a class="archive-list-link" href="/2024/08/05/front-end-performance-task-schedule/" title="前端性能优化--任务管理和调度">前端性能优化--任务管理和调度...</a>
</li>
<li class="archive-list-item">
<a class="archive-list-link" href="/2024/07/17/front-end-performance-r-tree/" title="前端性能优化--R 树的使用">前端性能优化--R 树的使用...</a>
</li>
<li class="archive-list-item">
<a class="archive-list-link" href="/2024/06/04/front-end-performance-jank-heartbeat-monitor/" title="前端性能优化--卡顿心跳检测">前端性能优化--卡顿心跳检测...</a>
</li>
<li class="archive-list-item">
<a class="archive-list-link" href="/2024/05/02/front-end-performance-jank-detect/" title="前端性能优化--用户卡顿检测">前端性能优化--用户卡顿检测...</a>
</li>
<li class="archive-list-item">
<a class="archive-list-link" href="/2024/04/03/front-end-performance-long-task/" title="让你的长任务在 50 毫秒内结束">让你的长任务在 50 毫秒内结束...</a>
</li>