forked from WebStackPage/WebStackPage.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
968 lines (955 loc) · 59.4 KB
/
index.html
File metadata and controls
968 lines (955 loc) · 59.4 KB
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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="HCLonely" />
<title>HCLonely导航 - 前端开发网址导航</title>
<meta name="keywords"
content="前端开发,JS,JavaScript,node,npm,html,css,网址导航,HCLonely">
<meta name="description" content="HCLonely导航 - 收集国内外优秀开发工具。dh.hclonely.com">
<link rel="shortcut icon" href="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/favicon.ico">
<link rel="stylesheet" href="https://fonts.loli.net/css?family=Arimo:400,700,400italic">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/css/fonts/linecons/css/linecons.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/css/fonts/fontawesome/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/css/xenon-core.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/css/xenon-components.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/css/xenon-skins.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/css/nav.min.css">
<script src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/js/jquery-1.11.1.min.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- / FB Open Graph -->
<meta property="og:type" content="article">
<meta property="og:url" content="https://dh.hclonely.com/">
<meta property="og:title" content="HCLonely网址导航">
<meta property="og:description"
content="前端开发,JS,JavaScript,node,npm,html,css,网址导航,HCLonely">
<meta property="og:image" content="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/webstack_banner_cn.png">
<meta property="og:site_name"
content="HCLonely导航 - 收集国内外优秀开发工具。dh.hclonely.com">
<!-- / Twitter Cards -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="HCLonely导航 - 收集国内外优秀开发工具。dh.hclonely.com">
<meta name="twitter:description"
content="前端开发,JS,JavaScript,node,npm,html,css,网址导航,HCLonely">
<meta name="twitter:image" content="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/webstack_banner_cn.png">
</head>
<body class="page-body">
<!-- skin-white -->
<div class="page-container">
<div class="sidebar-menu toggle-others fixed">
<div class="sidebar-menu-inner">
<header class="logo-env">
<!-- logo -->
<div class="logo">
<a href="/index.html" class="logo-expanded">
<img src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/[email protected]" width="100%" alt="" />
</a>
<a href="/index.html" class="logo-collapsed">
<img src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/[email protected]" width="40" alt="" />
</a>
</div>
<div class="mobile-menu-toggle visible-xs">
<a href="#" data-toggle="user-info-menu">
<i class="linecons-cog"></i>
</a>
<a href="#" data-toggle="mobile-menu">
<i class="fa-bars"></i>
</a>
</div>
</header>
<ul id="main-menu" class="main-menu">
<li>
<a href="#常用推荐" class="smooth">
<i class="linecons-star"></i>
<span class="title">常用推荐</span>
</a>
</li>
<li>
<a href="#开发工具" class="smooth">
<i class="linecons-doc"></i>
<span class="title">开发工具</span>
</a>
</li>
<li>
<a href="#JS工具库" class="smooth">
<i class="linecons-lightbulb"></i>
<span class="title">JS工具库</span>
</a>
</li>
<li class="submit-tag">
<a href="about.html">
<i class="linecons-heart"></i>
<span class="tooltip-blue">关于本站</span>
<span class="label label-Primary pull-right hidden-collapsed">♥︎</span>
</a>
</li>
</ul>
</div>
</div>
<div class="main-content">
<nav class="navbar user-info-navbar" role="navigation">
<!-- User Info, Notifications and Menu Bar -->
<!-- Left links for user info navbar -->
<ul class="user-info-menu left-links list-inline list-unstyled">
<li class="hidden-sm hidden-xs">
<a href="#" data-toggle="sidebar">
<i class="fa-bars"></i>
</a>
</li>
<li class="dropdown hover-line language-switcher">
<a href="/index.html" class="dropdown-toggle" data-toggle="dropdown">
<img src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/flags/flag-cn.png" alt="flag-cn" /> Chinese
</a>
<ul class="dropdown-menu languages">
<li class="active">
<a href="/index.html">
<img src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/flags/flag-cn.png" alt="flag-cn" /> Chinese
</a>
</li>
</ul>
</li>
</ul>
<a href="https://github.com/HCLonely" class="github-corner" aria-label="View source on GitHub"><svg
width="80"
height="80" viewBox="0 0 250 250"
style="fill:#151513; color:#fff; position: absolute; top: 0; border: 0; right: 0;"
aria-hidden="true">
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
<path
d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2"
fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path>
<path
d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z"
fill="currentColor" class="octo-body"></path>
</svg></a>
<style>
.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
@keyframes octocat-wave {
0%,
100% {
transform: rotate(0)
}
20%,
60% {
transform: rotate(-25deg)
}
40%,
80% {
transform: rotate(10deg)
}
}
@media (max-width:500px) {
.github-corner:hover .octo-arm {
animation: none
}
.github-corner .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
}
</style>
</nav>
<!-- 常用推荐 -->
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="常用推荐"></i>常用推荐</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://github.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://github.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/github.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Github</strong>
</a>
<p class="overflowClip_2">面向开源及私有软件项目的托管平台。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://www.ipip.net/ip.html', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.ipip.net/ip.html">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/ipip.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>IPIP</strong>
</a>
<p class="overflowClip_2">专业的 IP 地址库。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://coding.net/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://coding.net/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/coding.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>CODING</strong>
</a>
<p class="overflowClip_2">Coding.net 是一个面向开发者的云端开发平台,提供 Git/SVN 代码托管、任务管理、在线
WebIDE、Cloud Studio、开发协作、文件管理、Wiki 管理、提供个人服务及企业版本的服务。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://www.npmjs.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.npmjs.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/npm.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>NPM</strong>
</a>
<p class="overflowClip_2">npm 是 JavaScript 世界的包管理工具,并且是 Node.js 平台的默认包管理工具。通过 npm
可以安装、共享、分发代码,管理项目依赖关系。</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://leancloud.cn/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://leancloud.cn/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/leancloud.png" class="lozad img-circle"
width="40">
</a>
<span class="label label-info" data-toggle="tooltip" data-placement="left" title=""
data-original-title="Hello I am a Tooltip"></span>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Leancloud</strong>
</a>
<p class="overflowClip_2">LeanCloud
为应用开发提供一站式解决方案,包括:数据存储、用户管理、消息推送、应用统计、社交分享、实时聊天等服务,让开发者彻底抛弃后端负担,专注于提升用户体验,最大限度提升产品发布、迭代周期,在市场上占领先机。
</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://www.aliyun.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.aliyun.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/aliyun.png" class="lozad img-circle" width="40">
</a>
<span class="label label-info" data-toggle="tooltip" data-placement="left" title=""
data-original-title="Hello I am a Tooltip"></span>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>阿里云</strong>
</a>
<p class="overflowClip_2">
230万用户正享用阿里云提供的云服务器、云数据库、云存储、CDN、大数据等服务,7x24小时售后支持,专业快速备案,助企业无忧上云。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://cloud.tencent.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://cloud.tencent.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/tencent-cloud.png" class="lozad img-circle" width="40">
</a>
<span class="label label-info" data-toggle="tooltip" data-placement="left" title=""
data-original-title="Hello I am a Tooltip"></span>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>腾讯云</strong>
</a>
<p class="overflowClip_2">
腾讯云为数百万的企业和开发者提供安全稳定的云计算服务,涵盖云服务器、云数据库、云存储、视频与CDN、域名注册等全方位云服务和各行业解决方案。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://www.bt.cn/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.bt.cn/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/baota.png" class="lozad img-circle" width="40">
</a>
<span class="label label-info" data-toggle="tooltip" data-placement="left" title=""
data-original-title="Hello I am a Tooltip"></span>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>宝塔面板</strong>
</a>
<p class="overflowClip_2">
宝塔,让运维简单高效。面板支持Linux与Windows系统。一键配置:LAMP/LNMP、网站、数据库、FTP、SSL,通过Web端轻松管理服务器。</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://www.jsdelivr.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.jsdelivr.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/jsdelivr.png" class="lozad img-circle"
width="40">
</a>
<span class="label label-info" data-toggle="tooltip" data-placement="left" title=""
data-original-title="Hello I am a Tooltip"></span>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>jsDelivr</strong>
</a>
<p class="overflowClip_2">适用于npm和GitHub的免费、快速且可靠的开源CDN,具有最好的网络和最佳性能,非常适合生产使用。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://translate.google.cn/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://translate.google.cn/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/translate.png" class="lozad img-circle"
width="40">
</a>
<span class="label label-info" data-toggle="tooltip" data-placement="left" title=""
data-original-title="Hello I am a Tooltip"></span>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Google 翻译</strong>
</a>
<p class="overflowClip_2">Google 的免费翻译服务可提供简体中文和另外 100 多种语言之间的互译功能,可让您即时翻译字词、短语和网页内容。
</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://mail.google.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://mail.google.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/gmail.png" class="lozad img-circle" width="40">
</a>
<span class="label label-info" data-toggle="tooltip" data-placement="left" title=""
data-original-title="Hello I am a Tooltip"></span>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Gmail</strong>
</a>
<p class="overflowClip_2">Google 的电子邮件服务。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://shields.io/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://shields.io/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/shields.png" class="lozad img-circle" width="40">
</a>
<span class="label label-info" data-toggle="tooltip" data-placement="left" title=""
data-original-title="Hello I am a Tooltip"></span>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Shields</strong>
</a>
<p class="overflowClip_2">我们提供快速且可扩展的信息图像作为徽章,适用于GitHub、Travis CI、Jenkins、WordPress和其他更多服务。</p>
</div>
</div>
</div>
</div>
</div>
<br />
<!-- END 常用推荐 -->
<!-- 我的博客 -->
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="我的博客"></i>我的博客</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://blog.hclonely.com/', '_blank')"
data-toggle="tooltip" data-placement="bottom" title=""
data-original-title="https://blog.hclonely.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/myblog.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>HCLonely Blog</strong>
</a>
<p class="overflowClip_2">一个懒人的博客。</p>
</div>
</div>
</div>
</div>
</div>
<br />
<!--END 推荐 -->
<!-- 开发工具 -->
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="开发工具"></i>开发工具</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://carbon.now.sh/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://carbon.now.sh/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/carbon.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Carbon</strong>
</a>
<p class="overflowClip_2">Carbon是最简单的创建和共享源代码美图的方法。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://jsconsole.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://jsconsole.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/jsconsole.png" class="lozad img-circle"
width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>jsconsole</strong>
</a>
<p class="overflowClip_2">在线 JS 控制台。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://fontspark.app/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://fontspark.app/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/fontspark.png" class="lozad img-circle"
width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>FontSpark</strong>
</a>
<p class="overflowClip_2">帮助设计师为他们的项目发现理想的字体。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://colorspark.app/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://colorspark.app/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/colorspark.png" class="lozad img-circle"
width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>ColorSpark</strong>
</a>
<p class="overflowClip_2">一个简单有效的工具,可以生成随机和渐变的颜色,以帮助设计师组合独特且引人注目的调色板。</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://tinypng.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://tinypng.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/tinypng.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>TinyPNG</strong>
</a>
<p class="overflowClip_2">使您的网站更快并节省带宽。 TinyPNG可将您的PNG图像优化50-80%,同时保持完全透明!</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('http://www.yopmail.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="http://www.yopmail.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/yopmail.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>YOPmail</strong>
</a>
<p class="overflowClip_2">YOPmail提供临时和匿名的邮箱地址。免费的临时邮箱来避免垃圾邮件。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://www.iconfont.cn/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://www.iconfont.cn/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/iconfont.png" class="lozad img-circle"
width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Iconfont</strong>
</a>
<p class="overflowClip_2">
Iconfont-国内功能很强大且图标内容很丰富的矢量图标库,提供矢量图标下载、在线存储、格式转换等功能。阿里巴巴体验团队倾力打造,设计和前端开发的便捷工具。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('http://www.box3.cn/index.html', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="http://www.box3.cn/index.html">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/box3.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>开发工具箱</strong>
</a>
<p class="overflowClip_2">常用小工具集合于一身,为我们的工作带来了福音。</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://search.chongbuluo.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://search.chongbuluo.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/chongbuluo.png" class="lozad img-circle"
width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>快搜</strong>
</a>
<p class="overflowClip_2">
快搜!虫部落全网独家首发出品!为你聚合Google,百度,必应等国内外综合搜索和学术,资源,专业领域知识等垂直搜索。精准搜索,便捷交互!是你的网络搜索第一站!</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://daneden.github.io/animate.css/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://daneden.github.io/animate.css/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/animate.png" class="lozad img-circle"
width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Animate.css</strong>
</a>
<p class="overflowClip_2">CSS3 动画库,也是目前最通用的动画库。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://ianlunn.github.io/Hover/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://ianlunn.github.io/Hover/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/hover.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Hover.css</strong>
</a>
<p class="overflowClip_2">CSS hover 悬停效果,可以应用于链接、按钮、图片等等。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://pandao.github.io/editor.md/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://pandao.github.io/editor.md/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/editor.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Editor.md</strong>
</a>
<p class="overflowClip_2">开源在线 Markdown 编辑器。</p>
</div>
</div>
</div>
</div>
</div>
<br />
<!--END 开发工具 -->
<!-- JS工具库 -->
<h4 class="text-gray"><i class="linecons-tag" style="margin-right: 7px;" id="JS工具库"></i>JS工具库</h4>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://lodash.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://lodash.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/l.png" class="lozad img-circle"
width="40">
</a>
<span class="label label-info" data-toggle="tooltip" data-placement="left" title=""
data-original-title="Hello I am a Tooltip"></span>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Lodash</strong>
</a>
<p class="overflowClip_2">Lodash 是一个一致性、模块化、高性能的 JavaScript 实用工具库</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://github.com/proYang/outils', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://github.com/proYang/outils">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/o.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>outils</strong>
</a>
<p class="overflowClip_2">前端业务代码工具库。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('http://layer.layui.com/', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="http://layer.layui.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/layer.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>layer</strong>
</a>
<p class="overflowClip_2">
layer是一款口碑极佳的web弹层组件,她具备全方位的解决方案,致力于服务各个水平段的开发人员,您的页面会轻松地拥有丰富而友好的操作体验。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://github.com/tuupola/lazyload', '_blank')" data-toggle="tooltip"
data-placement="bottom"
title="" data-original-title="https://github.com/tuupola/lazyload">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/l.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>lazyload</strong>
</a>
<p class="overflowClip_2">图片懒加载。</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://github.com/fengyuanchen/viewerjs', '_blank')"
data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://github.com/fengyuanchen/viewerjs">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/viewerjs.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Viewer.js</strong>
</a>
<p class="overflowClip_2">JavaScript 图片查看器.</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://plugins.compzets.com/animatescroll/', '_blank')"
data-toggle="tooltip"
data-placement="bottom" title=""
data-original-title="https://plugins.compzets.com/animatescroll/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/animatescroll.png" class="lozad img-circle"
width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>AnimateScroll</strong>
</a>
<p class="overflowClip_2">jQuery 滚动动画插件。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://github.com/ElemeFE/element', '_blank')"
data-toggle="tooltip" data-placement="bottom" title=""
data-original-title="https://github.com/ElemeFE/element">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/element.png" class="lozad img-circle"
width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Element</strong>
</a>
<p class="overflowClip_2">Element,一套为开发者、设计师和产品经理准备的基于 Vue 2.0 的桌面端组件库。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://github.com/sweetalert2/sweetalert2', '_blank')"
data-toggle="tooltip"
data-placement="bottom" title=""
data-original-title="https://github.com/sweetalert2/sweetalert2">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/sweetalert2.png" class="lozad img-circle"
width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>sweetalert2</strong>
</a>
<p class="overflowClip_2">一个美观,响应,可定制,可访问(WAI-ARIA)替代JAVASCRIPT的弹出框。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://github.com/MoePlayer/APlayer', '_blank')"
data-toggle="tooltip"
data-placement="bottom" title=""
data-original-title="https://github.com/MoePlayer/APlayer">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/animate.png" class="lozad img-circle"
width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>APlayer</strong>
</a>
<p class="overflowClip_2">一个漂亮的 HTML5 音乐播放器。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://plugins.compzets.com/animatescroll/', '_blank')"
data-toggle="tooltip" data-placement="bottom" title=""
data-original-title="https://plugins.compzets.com/animatescroll/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/dplayer.png" class="lozad img-circle"
width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>DPlayer</strong>
</a>
<p class="overflowClip_2">一个可爱的 HTML5 弹幕视频播放器。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick="window.open('https://github.com/cmiscm/leonsans', '_blank')" data-toggle="tooltip"
data-placement="bottom" title="" data-original-title="https://github.com/cmiscm/leonsans">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/images/logos/leonsans.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Leon Sans</strong>
</a>
<p class="overflowClip_2">动态字体特效。</p>
</div>
</div>
</div>
</div>
</div>
<br />
<!--END JS工具库 -->
<!-- Main Footer -->
<!-- Choose between footer styles: "footer-type-1" or "footer-type-2" -->
<!-- Add class "sticky" to always stick the footer to the end of page (if page contents is small) -->
<!-- Or class "fixed" to always fix the footer to the end of page -->
<footer class="main-footer sticky footer-type-1">
<div class="footer-inner">
<!-- Add your copyright text here -->
<div class="footer-text">
© 2020
<a href="/about.html"><strong>WebStack</strong></a> design by <a href="http://viggoz.com"
target="_blank"><strong>Viggo</strong></a> Modify by <a href="https://www.hclonely.com"
target="_blank"><strong>HCLonely</strong></a>
<!-- - Purchase for only <strong>23$</strong> -->
</div>
<!-- Go to Top Link, just add rel="go-top" to any link to add this functionality -->
<div class="go-up">
<a href="#" rel="go-top">
<i class="fa-angle-up"></i>
</a>
</div>
</div>
</footer>
</div>
</div>
<!-- 锚点平滑移动 -->
<script type="text/javascript">
$(document).ready(function () {
//img lazy loaded
const observer = lozad();
observer.observe();
$(document).on('click', '.has-sub', function () {
var _this = $(this)
if (!$(this).hasClass('expanded')) {
setTimeout(function () {
_this.find('ul').attr("style", "")
}, 300);
} else {
$('.has-sub ul').each(function (id, ele) {
var _that = $(this)
if (_this.find('ul')[0] != ele) {
setTimeout(function () {
_that.attr("style", "")
}, 300);
}
})
}
})
$('.user-info-menu .hidden-sm').click(function () {
if ($('.sidebar-menu').hasClass('collapsed')) {
$('.has-sub.expanded > ul').attr("style", "")
} else {
$('.has-sub.expanded > ul').show()
}
})
$("#main-menu li ul li").click(function () {
$(this).siblings('li').removeClass('active'); // 删除其他兄弟元素的样式
$(this).addClass('active'); // 添加当前元素的样式
});
$("a.smooth").click(function (ev) {
ev.preventDefault();
public_vars.$mainMenu.add(public_vars.$sidebarProfile).toggleClass('mobile-is-visible');
ps_destroy();
$("html, body").animate({
scrollTop: $($(this).attr("href")).offset().top - 30
}, {
duration: 500,
easing: "swing"
});
});
return false;
});
var href = "";
var pos = 0;
$("a.smooth").click(function (e) {
$("#main-menu li").each(function () {
$(this).removeClass("active");
});
$(this).parent("li").addClass("active");
e.preventDefault();
href = $(this).attr("href");
pos = $(href).position().top - 30;
});
</script>
<!-- Bottom Scripts -->
<script src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/js/TweenMax.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/js/resizeable.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/js/joinable.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/js/xenon-api.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/js/xenon-toggles.min.js"></script>
<!-- JavaScripts initializations and stuff -->
<script src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/js/xenon-custom.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/HCLonely/WebStackPage.github.io@latest/assets/js/lozad.min.js"></script>
</body>
</html>