-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
4359 lines (4351 loc) · 219 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
<!-- ..____.╭╮╭╮.____...
.._...╭-┴┴★╮_......
.._...│◎ ︵│_......
...※※※╰○--○╯※※※....
.......欢迎~........
...★ARLEY'B BOOKMARKS★... -->
<!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">
<meta name="author" content="Arley">
<title>Arley's | 书签导航</title>
<meta name="keywords" content="arley,导航,网址,书签导航"/>
<meta name="description" content="Arley's | 书签导航">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>
<script src="js/getBrowser.js"></script>
<link rel="stylesheet" href="css/linecons.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/xenon-skins.css">
<link rel="stylesheet" href="css/nav.css">
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/function.js"></script>
<!--[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]-->
</head>
<body class="page-body">
<div class="page-container">
<div class="sidebar-menu toggle-others fixed">
<div class="sidebar-menu-inner">
<header class="logo-env">
<div class="logo"><a href="https://bm.arley.cn/" class="logo-expanded"><strong>ARLEY'S BOOKMARKS</strong></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="#search" class="smooth"><i class="linecons-search"></i> <span class="title">Search</span></a></li>
<li><a href="#热搜新闻" class="smooth"><i class="linecons-fire"></i> <span class="title">热搜新闻</span></a></li>
<li><a href="#常用站点" class="smooth"><i class="linecons-star"></i> <span class="title">常用站点</span></a></li>
<li><a href="#字母站" class="smooth"><i class="linecons-diamond"></i> <span class="title">字母站</span></a></li>
<li><a><i class="linecons-thumbs-up"></i> <span class="title">实用工具</span></a>
<ul>
<li><a href="#在线工具箱" class="smooth"><span class="title">在线工具箱</span></a></li>
<li><a href="#在线改图" class="smooth"><span class="title">在线改图</span></a></li>
<li><a href="#在线转格" class="smooth"><span class="title">在线转格</span></a></li>
<li><a href="#在线生成" class="smooth"><span class="title">在线生成</span></a></li>
<li><a href="#其他在线" class="smooth"><span class="title">其他在线</span></a></li>
<li><a href="#上传下载" class="smooth"><span class="title">上传下载</span></a></li>
<li><a href="#软件精选" class="smooth"><span class="title">软件精选</span></a></li>
<li><a href="#浏览器插件" class="smooth"><span class="title">浏览器插件</span></a></li>
<li><a href="#虚拟信息" class="smooth"><span class="title">虚拟信息</span></a></li>
</ul>
</li>
<li><a><i class="linecons-photo"></i> <span class="title">素材资源</span></a>
<ul>
<li><a href="#壁纸下载" class="smooth"><span class="title">壁纸下载</span></a></li>
<li><a href="#PNG免扣" class="smooth"><span class="title">PNG免扣</span></a></li>
<li><a href="#PPT下载" class="smooth"><span class="title">PPT下载</span></a></li>
<li><a href="#其他资源" class="smooth"><span class="title">其他资源</span></a></li>
<li><a href="#设计灵感" class="smooth"><span class="title">设计灵感</span></a></li>
</ul>
</li>
<li><a><i class="linecons-doc"></i> <span class="title">开发生产</span></a>
<ul>
<li><a href="#云服务" class="smooth"><span class="title">云服务</span></a></li>
<li><a href="#开发文档" class="smooth"><span class="title">开发文档</span></a></li>
<li><a href="#模板资源" class="smooth"><span class="title">模板资源</span></a></li>
<li><a href="#Github" class="smooth"><span class="title">Github</span></a></li>
</ul>
</li>
<li><a><i class="linecons-graduation-cap"></i> <span class="title">学无止境</span></a>
<ul>
<li><a href="#自学编程" class="smooth"><span class="title">自学编程</span></a></li>
<li><a href="#学习吧" class="smooth"><span class="title">学习吧</span></a></li>
<li><a href="#休闲娱乐" class="smooth"><span class="title">休闲娱乐</span></a></li>
</ul>
</li>
<li><a><i class="linecons-desktop"></i> <span class="title">系统相关</span></a>
<ul>
<li><a href="#系统下载" class="smooth"><span class="title">系统下载</span></a></li>
<li><a href="#系统美化" class="smooth"><span class="title">系统美化</span></a></li>
<li><a href="#系统工具" class="smooth"><span class="title">系统工具</span></a></li>
</ul>
</li>
<li><a><i class="linecons-tv"></i> <span class="title">在线追剧</span><span class="label label-pink pull-right hidden-collapsed">New</span></a>
<ul>
<li><a href="#4K优选" class="smooth"><span class="title">4K优选</span></a></li>
<li><a href="#在线综合" class="smooth"><span class="title">在线综合</span></a></li>
<li><a href="#在线日韩" class="smooth"><span class="title">在线日韩</span></a></li>
<li><a href="#在线动漫" class="smooth"><span class="title">在线动漫</span></a></li>
<li><a href="#在线港台" class="smooth"><span class="title">在线港台</span></a></li>
<li><a href="#在线解析" class="smooth"><span class="title">在线解析</span></a></li>
<li><a href="#字幕库" class="smooth"><span class="title">字幕库</span></a></li>
<li><a href="#资源库" class="smooth"><span class="title">资源库</span></a></li>
</ul>
</li>
<li><a><i class="linecons-search"></i> <span class="title">搜索引擎</span></a>
<ul>
<li><a href="#影视搜索" class="smooth"><span class="title">影视搜索</span></a></li>
<li><a href="#小说搜索" class="smooth"><span class="title">小说搜索</span></a></li>
<li><a href="#以图搜图" class="smooth"><span class="title">以图搜图</span></a></li>
</ul>
</li>
<li><a href="#about" class="smooth"><i class="linecons-user"></i> <span class="title">关于本站</span></a></li>
</ul>
</div>
</div>
<div class="main-content">
<nav class="navbar user-info-navbar" role="navigation">
<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>
<a href="https://arley.cn/" target="_blank" style="padding:30px 20px">
<i class="fa fa-home"></i> 主页
</a>
</li>
<li>
<a href="https://pan.arley.cn/" target="_blank" style="padding:30px 20px">
<i class="fa fa-cloud"></i> Arley云盘
</a>
</li>
<li style="min-height: 75px;">
<a href="https://github.com/arleycn/" target="_blank" style="padding:30px 20px">
<i class="fa fa-github"></i> GITHUB
</a>
</li>
</ul>
</nav>
<!-- 可添加banner -->
<!--<div class="box" id="banner">-->
<!-- <div style="display: flex; justify-content: center; align-items: center;">-->
<!-- <img src="img/banner.svg" width="90%" height="auto">-->
<!-- </div>-->
<!--</div>-->
<!-- 内容卡片 -->
<div class="box" id="search"style="overflow: visible;">
<div style="display: flex; justify-content: center;align-items: center; padding-top: 20px" >
<div style="display: flex;width: 100%; justify-content: center;">
<div style="width: 50%;position: relative;">
<input id="searchText" type="text" title="请先输入搜索内容,然后点击下面的标签~" placeholder="先输入内容然后点下面标签~" oninput ="autoFillSearch()" onblur="searchTextOnblur()"
style="border: 1px solid rgba(34,36,38,.15); outline: 0; border-radius: 30px; width: 100%; height: 40px; background-color: #ffffffba; padding-left: 15px; padding-right: 15px;"/>
<div id="autoFillInput" style="width: 100%; position: absolute; z-index: 99999; background: #fff; overflow: auto;">
</div>
</div>
</div>
</div>
<div style="display: flex; justify-content: center;align-items: center; padding-top: 10px" >
<div style="display: flex;width: 100%; justify-content: center;">
<div style="justify-content: center;">
<input type="button" class="search_btn" value="必应" onclick="search_click('bing')" />
<input type="button" class="search_btn" value="百度" onclick="search_click('baidu')" />
<input type="button" class="search_btn" value="搜狗" onclick="search_click('sogou')" />
<input type="button" class="search_btn" value="知乎" onclick="search_click('zhihu')" />
<input type="button" class="search_btn" value="Bilibili" onclick="search_click('bilibili')" />
<input type="button" class="search_btn" value="谷歌" onclick="search_click('google')" />
<input type="button" class="search_btn" value="谷歌镜像" onclick="search_click('google-image')" />
<input type="button" class="search_btn" value="github" onclick="search_click('github')" />
</div>
</div>
</div>
</div>
<br>
<br>
<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://quark.sm.cn/s?q=%E7%83%AD%E6%90%9C&tab=quark","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="夸克热搜">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>夸克热搜</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://tophub.today/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://tophub.today/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>今日热榜</strong>
</a>
<p class="overflowClip_2">今日热榜,Tophub,热门新闻,今日头条,热搜,热词,新闻聚合,摸鱼</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("http://www.53bk.com/baokan/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="http://www.53bk.com/baokan/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>多媒体数字报纸</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://qnmlgb.tech/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://qnmlgb.tech/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
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("http://www.guozhivip.com/rank/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="http://www.guozhivip.com/rank/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>果汁排行榜</strong>
</a>
<p class="overflowClip_2">是果汁导航旗下一键式快速查询各类排行榜的网站,网站囊括了热搜、热议、电影、音乐、摄影、游戏、财富等各大领域权威排名榜单</p>
</div>
</div>
</div>
</div>
</div>
<br>
<br>
<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://www.aliyundrive.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.aliyundrive.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>阿里云盘</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.teambition.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.teambition.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>Teambition</strong>
</a>
<p class="overflowClip_2">Teambition · 阿里巴巴工作学习套件,个人网盘</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://www.lanzou.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.lanzou.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>蓝奏云</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://pan.baidu.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://pan.baidu.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
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://github.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://github.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>GITHUB</strong>
</a>
<p class="overflowClip_2">GitHub is where people build software. More than 65 million people use GitHub to discover, fork, and contribute to over 200 million projects.</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://www.deepl.com/translator","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.deepl.com/translator">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>Deep翻译</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://web.telegram.org/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://web.telegram.org/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>Telegram - Web</strong>
</a>
<p class="overflowClip_2">Telegram网页端,免下载畅聊群组</p>
</div>
</div>
</div>
</div>
</div>
<br>
<br>
<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://www.acfun.cn/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.acfun.cn/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>A站</strong>
</a>
<p class="overflowClip_2">以此纪念A站炸服2021年七月十三日???AcFun是国内首家弹幕视频网站,这里有全网独家动漫新番, 友好的弹幕氛围,有趣的UP主,好玩有科技感的虚拟偶像,年轻人都在用。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://www.bilibili.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.bilibili.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>B站</strong>
</a>
<p class="overflowClip_2">以此纪念B站炸服2021年七月十三日???bilibili是国内知名的视频弹幕网站,这里有及时的动漫新番,活跃的ACG氛围,有创意的Up主。大家可以在这里找到许多欢乐。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://www.clicli.wang/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.clicli.wang/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>C站</strong>
</a>
<p class="overflowClip_2">新番,动漫,番剧,番组,CliCli动漫,CliCli,日本动漫,高清动漫,1080P</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("static/Dzhan.html","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="static/Dzhan.html">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>D站</strong>
</a>
<p class="overflowClip_2">D站,弹幕,新番,映画,日剧(已闭站)</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://ecy.cn/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://ecy.cn/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>E站</strong>
</a>
<p class="overflowClip_2">二次元ecy.cn是ACG爱好者社区,汇聚了包括Coser、绘师、写手等创作者在内的众多ACG同好,提供cosplay、绘画和小说创作发表、二次元同好交流等社群服务。网站共设cosplay、绘画、写作、漫展、话题、视频、弹幕等多个频道。 </p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://www.fakku.net/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.fakku.net/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>F站</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://gelbooru.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://gelbooru.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>G站</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.hexieshe.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.hexieshe.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>H站</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://iirose.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://iirose.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong> I站 </strong>
</a>
<p class="overflowClip_2">蔷薇花园 IIROSE ( i站 ) 是一个正在不断完善的虚拟世界 , 您可以把这里当做树洞亦或者是一个网络上的家 , 在这里您能找到属于自己的树洞和归属感 , 还能遇到各样性情的伙伴 , 开始一段旅程吧 。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://www.jdlingyu.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.jdlingyu.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong> J站 </strong>
</a>
<p class="overflowClip_2">绝对领域 – JDLINGYU绅士从这里开始(´・ω・`)J站</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://konachan.net/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://konachan.net/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong> K站 </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.lofter.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.lofter.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong> L站 </strong>
</a>
<p class="overflowClip_2">LOFTER(乐乎) - 让兴趣,更有趣</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.missevan.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.missevan.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong> M站 </strong>
</a>
<p class="overflowClip_2">M站(猫耳FM)是第一家弹幕音图站,同时也是中国声优基地,在这里可以听电台,音乐,翻唱,小说和广播剧,用二次元声音连接三次元.</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://www.nicovideo.jp/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.nicovideo.jp/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong> N站 </strong>
</a>
<p class="overflowClip_2">NICONICO动画(日文:ニコニコ动画)是NIWANGO公司所提供的线上影片分享网站</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("http://www.orzice.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="http://www.orzice.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong> O站 </strong>
</a>
<p class="overflowClip_2">Orzice_冰尘网简称“O站”,一个综合性的二次元ACGN爱好者社区,动漫美图,cosplay,漫展活动,300英雄等ACGN资源应有尽有。一起吐槽楼主,寻找好姬友一起分享二次元日常。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://www.pixiv.net/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.pixiv.net/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong> P站 </strong>
</a>
<p class="overflowClip_2">pixiv是提供插画等作品的投稿、阅览服务的「插画交流网站」。这里有各种各样不同风格的投稿作品,我们还会举办官方、用户企画的各种比赛。</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.qq.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.qq.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong> Q站 </strong>
</a>
<p class="overflowClip_2">试图混入Q站,腾讯注册Q站商标,请期待!</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://www.btbat.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.btbat.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong> R站 </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://www.silisili.in/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="http://www.silisili.in/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong> S站 </strong>
</a>
<p class="overflowClip_2">嘶哩嘶哩,无论您喜欢哪种类型动漫,都会竭尽全力为您呈现,嘶哩嘶哩动漫,为你打开二次元大门的小站(S站),动漫后花园。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("http://www.zzzfun.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="http://www.zzzfun.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong> Z站 </strong>
</a>
<p class="overflowClip_2">z站,zzzfun,弹幕视频,动画,好看动漫,动漫网站,新番,日本最新动漫,动漫下载</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.diyidan.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.diyidan.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>第一弹官网</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.nyato.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.nyato.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>Nyato喵特漫展</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.linovel.net/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.linovel.net/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>轻之文库轻小说</strong>
</a>
<p class="overflowClip_2">轻之文库,中国的轻小说文库。让我们在二次元的世界里一同创作有趣的故事!定期举办轻小说新人赏,提供APP下载。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://zh.moegirl.org.cn/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://zh.moegirl.org.cn/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>萌娘百科</strong>
</a>
<p class="overflowClip_2">萌娘,百科,wiki,梗,娘化,萝莉,动画,漫画,动漫,游戏,音乐,宅腐,ACG,anime,comic,game,GalGame</p>
</div>
</div>
</div>
</div>
</div>
<br>
<br>
<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://www.toolfk.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.toolfk.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>TOOLFK在线工具人</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://www.atoolbox.net/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="http://www.atoolbox.net/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>一个工具箱</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.jiuwa.net/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.jiuwa.net/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>九蛙工具箱</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://tiomg.org/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://tiomg.org/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
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://tool.chinaz.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://tool.chinaz.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>站长工具</strong>
</a>
<p class="overflowClip_2">站长工具是站长的必备工具。经常上站长工具可以了解SEO数据变化。还可以检测网站死链接、蜘蛛访问、HTML格式检测、网站速度测试、友情链接检查、网站域名IP查询、PR、权重查询、alexa、whois查询等等。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://tool.lu/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://tool.lu/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>开发工具箱</strong>
</a>
<p class="overflowClip_2">在线工具,开发人员工具,代码格式化、压缩、加密、解密,下载链接转换,sql工具,正则测试工具,favicon在线制作,字帖工具,中文简繁体转换,迅雷下载链接转换,进制转换,二维码</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://www.wntool.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.wntool.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>万能兔</strong>
</a>
<p class="overflowClip_2">万能兔在线工具箱(www.wntool.com)提供各种在线工具,为站长和互联网从业者提供免费的工具,我们的工具有在线JSON工具,在线加密工具,在线解密工具,代码格式化工具,正则工具等</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("http://www.tolyg.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="http://www.tolyg.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
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://docsmall.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://docsmall.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>DOCSMALL</strong>
</a>
<p class="overflowClip_2">docsmall - 免费在线图片压缩、GIF压缩工具、PDF压缩工具、PDF合并工具、PDF分割工具</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://www.canva.cn/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.canva.cn/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>Canva可画在线平面设计</strong>
</a>
<p class="overflowClip_2">在线设计网站,平面设计软件,免费在线设计软件,免费设计素材模板,Canva</p>
</div>
</div>
</div>
</div>
</div>
<br>
<br>
<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://compressjpeg.com/zh/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://compressjpeg.com/zh/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>PNG压缩</strong>
</a>
<p class="overflowClip_2">png压缩中文版</p>
</div>
</div>
</div>
</div>
<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" data-original-title="https://tinypng.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>PNG压缩</strong>
</a>
<p class="overflowClip_2">Smart PNG and JPEG compression More than 1 billion PNG and JPEG images optimized and still counting!</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info"
onclick='window.open("https://www.picdiet.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.picdiet.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>在线jpg图片压缩</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://waifu2x.udp.jp/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="http://waifu2x.udp.jp/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
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://bigjpg.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://bigjpg.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>AI人工智能图片放大</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.gaitubao.com/","_blank")' data-toggle="tooltip"
data-placement="bottom" data-original-title="https://www.gaitubao.com/">
<div class="xe-comment-entry">
<div class="xe-comment">
<a href="javascript:void();"
class="xe-user-name overflowClip_1">
<strong>改图宝</strong>
</a>
<p class="overflowClip_2">在线修改照片大小,在线修改图片大小,在线修改照片尺寸</p>
</div>
</div>