-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
3385 lines (2925 loc) · 139 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>
<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="viggo" />
<title>時光导航站 - 時光导航站</title>
<meta name="keywords" content="">
<meta name="description" content="一个有趣、实用的个人导航站地">
<link rel="shortcut icon" href="/img/favicon.ico">
<link rel="stylesheet" href="/css/hclonely.css">
<link rel="stylesheet" href="//fonts.loli.net/css?family=Arimo:400,700,400italic.css">
<link rel="stylesheet" href="/css/fonts/linecons/css/linecons.min.css">
<link rel="stylesheet" href="/css/fonts/fontawesome/css/all.min.css">
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/xenon-core.min.css">
<link rel="stylesheet" href="/css/xenon-components.min.css">
<link rel="stylesheet" href="/css/xenon-skins.min.css">
<link rel="stylesheet" href="/css/nav.min.css">
<script src="/js/jquery-1.11.1.min.js"></script>
<script>
var userDefinedSearchData = {"custom":false,"thisSearch":"https://www.baidu.com/s?wd=","thisSearchIcon":"url(https://www.baidu.com/favicon.ico)","hotStatus":true,"data":[{"name":"百度","img":"url(https://www.baidu.com/favicon.ico)","url":"https://www.baidu.com/s?wd="}]};
var expandAll = false;
</script>
<script src="/js/header.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="/js/html5shiv.min.js"></script>
<script src="/js/respond.min.js"></script>
<![endif]-->
<!-- / FB Open Graph -->
<meta property="og:type" content="article">
<meta property="og:url" content="http://example.com/index.html">
<meta property="og:title" content="時光导航站 - 時光导航站">
<meta property="og:description" content="一个有趣、实用的个人导航站地">
<meta property="og:site_name" content="時光导航站 - 時光导航站">
<meta property="og:image" content="/images/webstack_banner_cn.png">
<!-- / Twitter Cards -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="時光导航站 - 時光导航站">
<meta name="twitter:description" content="一个有趣、实用的个人导航站地">
<meta name="twitter:image" content="/images/webstack_banner_cn.png">
<!-- 直接添加html内容即可 -->
<!-- 可设置多行 -->
<meta name="generator" content="Hexo 7.3.0"></head>
</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="/index.html" class="logo-expanded">
<img src="/img/logo.png" width="100%" alt="" />
</a>
<a href="/index.html" class="logo-collapsed">
<img src="/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="fas fa-bars"></i>
</a>
</div>
</header>
<ul id="main-menu" class="main-menu">
<li class="">
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="far fa-user-circle"></i>
<span class="title">关于站长</span>
</a>
<ul style="display: none;">
<li>
<a href="#社交媒体" class="smooth">
<i class="fas fa-address-card"></i>
<span class="title">社交媒体</span>
</a>
</li>
<li>
<a href="#演示站点" class="smooth">
<i class="fa fa-anchor"></i>
<span class="title">演示站点</span>
</a>
</li>
</ul>
</li>
<li class="">
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fas fa-graduation-cap"></i>
<span class="title">学无止境</span>
</a>
<ul style="display: none;">
<li>
<a href="#在线视频" class="smooth">
<i class="fa fa-cloud"></i>
<span class="title">在线视频</span>
</a>
</li>
<li>
<a href="#在线文档" class="smooth">
<i class="fa fa-file"></i>
<span class="title">在线文档</span>
</a>
</li>
<li>
<a href="#优质博客" class="smooth">
<i class="fas fa-blog"></i>
<span class="title">优质博客</span>
</a>
</li>
</ul>
</li>
<li class="">
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fa fa-child"></i>
<span class="title">人工智能</span>
</a>
<ul style="display: none;">
<li>
<a href="#AI对话" class="smooth">
<i class="fa fa-comment"></i>
<span class="title">AI对话</span>
</a>
</li>
<li>
<a href="#AI应用" class="smooth">
<i class="fa fa-cog"></i>
<span class="title">AI应用</span>
</a>
</li>
<li>
<a href="#AI搜索" class="smooth">
<i class="fa fa-search"></i>
<span class="title">AI搜索</span>
</a>
</li>
<li>
<a href="#AI导航" class="smooth">
<i class="fa fa-plane"></i>
<span class="title">AI导航</span>
</a>
</li>
</ul>
</li>
<li class="">
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fas fa-tools"></i>
<span class="title">软件工具</span>
</a>
<ul style="display: none;">
<li>
<a href="#应用下载" class="smooth">
<i class="fa fa-download"></i>
<span class="title">应用下载</span>
</a>
</li>
<li>
<a href="#实用工具" class="smooth">
<i class="fa fa-briefcase"></i>
<span class="title">实用工具</span>
</a>
</li>
<li>
<a href="#在线处理" class="smooth">
<i class="fa fa-sitemap"></i>
<span class="title">在线处理</span>
</a>
</li>
<li>
<a href="#工具聚合" class="smooth">
<i class="fa fa-cogs"></i>
<span class="title">工具聚合</span>
</a>
</li>
<li>
<a href="#接码平台" class="smooth">
<i class="fa fa-envelope"></i>
<span class="title">接码平台</span>
</a>
</li>
</ul>
</li>
<li class="">
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fa fa-users"></i>
<span class="title">社区论坛</span>
</a>
<ul style="display: none;">
<li>
<a href="#开发社区" class="smooth">
<i class="fa fa-trophy"></i>
<span class="title">开发社区</span>
</a>
</li>
<li>
<a href="#技术论坛" class="smooth">
<i class="fa fa-university"></i>
<span class="title">技术论坛</span>
</a>
</li>
</ul>
</li>
<li class="">
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fa fa-suitcase"></i>
<span class="title">开发工具</span>
</a>
<ul style="display: none;">
<li>
<a href="#托管平台" class="smooth">
<i class="fa fa-truck"></i>
<span class="title">托管平台</span>
</a>
</li>
<li>
<a href="#开源应用" class="smooth">
<i class="fa fa-ship"></i>
<span class="title">开源应用</span>
</a>
</li>
<li>
<a href="#建站工具" class="smooth">
<i class="fa fa-wrench"></i>
<span class="title">建站工具</span>
</a>
</li>
</ul>
</li>
<li class="">
<a class="fas fa-angle-down" style="cursor: pointer;">
<i class="fa fa-coffee"></i>
<span class="title">休闲娱乐</span>
</a>
<ul style="display: none;">
<li>
<a href="#在线观影" class="smooth">
<i class="fa fa-eye"></i>
<span class="title">在线观影</span>
</a>
</li>
</ul>
</li>
<li class="">
<a href="#酷站分享" class="smooth">
<i class="fa fa-paw"></i>
<span class="title">酷站分享</span>
</a>
</li>
<li class="">
<a href="#导航网站" class="smooth">
<i class="fa fa-paper-plane"></i>
<span class="title">导航网站</span>
</a>
</li>
<li class="submit-tag">
<a href="/about/">
<i class="far fa-heart"></i>
<span class="tooltip-blue">关于本站</span>
</a>
</li>
<li>
<a href="javascript:void(0)">
<i class="fas fa-eye"></i>
<span id="busuanzi_container_site_pv">本站总访问量<span id="busuanzi_value_site_pv"></span></span>
</a>
</li>
<li>
<a href="javascript:void(0)">
<i class="fas fa-users"></i>
<span id="busuanzi_container_site_uv">本站总访客数<span id="busuanzi_value_site_uv"></span></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 hover-line">
<a href="#" data-toggle="sidebar">
<i class="fas fa-bars"></i>
</a>
</li>
<li class="dropdown hover-line language-switcher">
<a href="/index.html" class="dropdown-toggle" data-toggle="dropdown">
<img src="/images/flags/flag-cn.png" alt="flag-cn" /> Chinese
</a>
<ul class="dropdown-menu languages">
<li class="active">
<a href="/index.html">
<img src="/images/flags/flag-cn.png" alt="flag-cn" alt="flag-cn" /> Chinese
</a>
</li>
</ul>
</li>
<li class="switch-mode hover-line" onclick="switchNightMode()">
<a href="#">
<svg t="1593061068148" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1681" width="16" height="16">
<path d="M582.4 326.4c-140.8 0-256 115.2-256 256s115.2 256 256 256 256-115.2 256-256-115.2-256-256-256z m0 448c-70.4 0-131.2-36.8-164.8-92.8 12.8 3.2 27.2 4.8 40 4.8 121.6 0 219.2-99.2 219.2-219.2 0-17.6-1.6-35.2-6.4-52.8 60.8 32 102.4 96 102.4 169.6 1.6 104-84.8 190.4-190.4 190.4zM582.4 262.4c17.6 0 32-14.4 32-32v-128c0-17.6-14.4-32-32-32s-32 14.4-32 32v128c0 17.6 14.4 32 32 32zM262.4 582.4c0-17.6-14.4-32-32-32h-128c-17.6 0-32 14.4-32 32s14.4 32 32 32h128c17.6 0 32-14.4 32-32zM310.4 356.8c6.4 6.4 14.4 9.6 22.4 9.6 8 0 16-3.2 22.4-9.6 12.8-12.8 12.8-32 0-44.8l-91.2-91.2c-12.8-12.8-32-12.8-44.8 0-12.8 12.8-12.8 32 0 44.8l91.2 91.2zM944 220.8c-12.8-12.8-32-12.8-44.8 0l-91.2 91.2c-12.8 12.8-12.8 32 0 44.8 6.4 6.4 14.4 9.6 22.4 9.6 8 0 16-3.2 22.4-9.6l91.2-91.2c12.8-12.8 12.8-33.6 0-44.8zM310.4 808l-91.2 91.2c-12.8 12.8-12.8 32 0 44.8 6.4 6.4 14.4 9.6 22.4 9.6 8 0 16-3.2 22.4-9.6l91.2-91.2c12.8-12.8 12.8-32 0-44.8-11.2-11.2-32-11.2-44.8 0z" p-id="1682" fill="#707070"></path>
</svg>
</a>
</li>
</ul>
<a target="_blank" rel="noopener" href="https://github.com/Shiguang-coding/navigate" 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>
<section class="sousuo">
<div class="search">
<div class="search-box">
<span class="search-icon" style="background: url(/images/search_icon.png) 0px 0px; opacity: 1;"></span>
<input type="text" id="txt" class="search-input" autocomplete="off" placeholder="请输入关键字,按回车 / Enter 搜索">
<button class="search-btn" id="search-btn"><i class="fa fa-search"></i></button>
</div>
<!-- 搜索热词 -->
<div class="box search-hot-text" id="box" style="display: none;">
<ul></ul>
</div>
<!-- 搜索引擎 -->
<div class="search-engine" style="display: none;">
<div class="search-engine-head">
<strong class="search-engine-tit">选择您的默认搜索引擎:</strong>
<div class="search-engine-tool">搜索热词: <span id="hot-btn" style="background-image: url(/images/off_on.png);"></span></div>
</div>
<ul class="search-engine-list search-engine-list_zmki_ul">
</ul>
</div>
</section>
<script>search('/images/search_icon.png')</script>
<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.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/avatar.jpg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>HomePage</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://blog.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://blog.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://blog.shiguang666.eu.org/favicon.ico" 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 class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://qq.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://qq.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/qqavatar.jpg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>QQ</strong>
</a>
<p class="overflowClip_2">時光的QQ卡片。</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/Shiguang-coding/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://github.com/Shiguang-coding/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/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">時光的GitHub主页。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://blog.csdn.net/qq_50082325', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://blog.csdn.net/qq_50082325">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://blog.csdn.net/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>CSDN</strong>
</a>
<p class="overflowClip_2">時光的CSDN主页。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.cnblogs.com/an-shiguang', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.cnblogs.com/an-shiguang">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/cnblogs.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 class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://publish.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://publish.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/homepage.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 class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://release.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://release.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/homepage.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>
<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://lobe.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://lobe.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://lobe.shiguang666.eu.org/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Lobe Chat</strong>
</a>
<p class="overflowClip_2">時光的LobeChat演示站。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://chatgpt.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://chatgpt.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://chatgpt.shiguang666.eu.org/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Next Chat</strong>
</a>
<p class="overflowClip_2">時光的NextChat演示站。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://geminichat.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://geminichat.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://geminichat.shiguang666.eu.org/icons/logo-512x512.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Talk with Gemini</strong>
</a>
<p class="overflowClip_2">時光的Talk with Gemini演示站。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://gemini.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://gemini.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://gemini.shiguang666.eu.org/icon.svg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Gemini Pro Chat</strong>
</a>
<p class="overflowClip_2">時光的Gemini Pro Chat演示站。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://love.shiguang666.eu.org', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://love.shiguang666.eu.org">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://love.shiguang666.eu.org/favicon.ico" 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 class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://douyin.shiguang666.eu.org', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://douyin.shiguang666.eu.org">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://douyin.shiguang666.eu.org/favicon.ico" 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 class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://game.shiguang666.eu.org', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://game.shiguang666.eu.org">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/chat.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 class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://games.shiguang666.eu.org', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://games.shiguang666.eu.org">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://echeverra.cn/wp-content/uploads/2021/06/cropped-thmub-32x32.jpg" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>H5小游戏合集</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://qwerty.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://qwerty.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://qwerty.shiguang666.eu.org/favicon.ico" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Qwerty Learner</strong>
</a>
<p class="overflowClip_2">時光的Qwerty Learner演示站。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://typing.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://typing.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="https://typing.shiguang666.eu.org/logo-text-black.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>Typing Word</strong>
</a>
<p class="overflowClip_2">時光的Typing Word演示站。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://pageturning.shiguang666.eu.org', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://pageturning.shiguang666.eu.org">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/homepage.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 class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://vip.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://vip.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/homepage.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 class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://countdown.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://countdown.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/homepage.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 class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://countdown1.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://countdown1.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/homepage.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 class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://countdown2.shiguang666.eu.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://countdown2.shiguang666.eu.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/homepage.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>
<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.bilibili.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.bilibili.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/%E5%93%94%E5%93%A9%E5%93%94%E5%93%A9.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">哔哩哔哩是中国年轻世代高度聚集的综合性视频社区,被用户亲切地称为“B站”。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.icourse163.org/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.icourse163.org/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/%E4%B8%AD%E5%9B%BD%E5%A4%A7%E5%AD%A6MOOC.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>中国大学MOOC</strong>
</a>
<p class="overflowClip_2">中国大学MOOC(慕课)_国家精品课程在线学习平台。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.imooc.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.imooc.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/%E6%85%95%E8%AF%BE%E7%BD%91.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">慕课网是垂直的互联网IT技能学习网站。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://ke.qq.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://ke.qq.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/%E8%85%BE%E8%AE%AF%E8%AF%BE%E5%A0%82.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 class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://open.163.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://open.163.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/%E7%BD%91%E6%98%93%E5%85%AC%E5%BC%80%E8%AF%BE.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 class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://study.163.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://study.163.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/%E7%BD%91%E6%98%93%E4%BA%91%E8%AF%BE%E5%A0%82.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>
<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.runoob.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.runoob.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/%E8%8F%9C%E9%B8%9F%E6%95%99%E7%A8%8B.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">介绍了Python,Java,Ruby,C,PHP , MySQL等各种编程语言的基础知识。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.w3school.com.cn/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.w3school.com.cn/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/w3school.png" class="lozad img-circle" width="40">
</a>
<div class="xe-comment">
<a href="#" class="xe-user-name overflowClip_1">
<strong>w3school</strong>
</a>
<p class="overflowClip_2">全球最大的中文 Web 技术教程。</p>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.liaoxuefeng.com/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.liaoxuefeng.com/">
<div class="xe-comment-entry">
<a class="xe-user-img">
<img data-src="/img/%E5%BB%96%E9%9B%AA%E5%B3%B0%E7%9A%84%E5%AE%98%E6%96%B9%E7%BD%91%E7%AB%99.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 class="col-sm-3">
<div class="xe-widget xe-conversations box2 label-info" onclick="window.open('https://www.pdai.tech/', '_blank')" data-toggle="tooltip" data-placement="bottom" title="" data-original-title="https://www.pdai.tech/">
<div class="xe-comment-entry">