-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopensources.html
1851 lines (1651 loc) · 61.5 KB
/
opensources.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>
<head>
<meta charset="utf-8">
<meta name="keywords" content="YDOOK, Jinwei Lin">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script>
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?acf5508bf34b223f602304bd5cfa143a";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<title>开源软件 - 林进威 - YDOOK</title>
<link rel="icon" href="./pictures/icon/Y.ico" />
</head>
<body>
<div class="HeadLineM">
<div class="ToolBtn" onclick="Btn1()">YDOOK</div>
<div class="ToolBtn" onclick="Btn2()">关于</div>
<div class="ToolBtn" onclick="Btn3()">作者</div>
<div class="ToolBtn" onclick="Btn4()">各类教程</div>
<div class="ToolBtn" onclick="Btn5()">技术科研</div>
<div class="ToolBtn" onclick="Btn6()">开源项目</div>
<div class="ToolBtn" onclick="Btn7()">旗下网站</div>
<div class="ToolBtn" onclick="Btn9()">YDOOK Github</div>
<div class="ToolBtn" onclick="Btn10()">YDOOK CSDN</div>
<div class="ToolBtn" onclick="Btn16()">To English</div>
</div>
<div class="MenuBox" id="MenuBox">
<div class="MenuBtn" id="MenuBtn" ondblclick="MenuFold()" onmousedown="MenuDown(event)"></div>
<div id="MenuPanel" class="MenuPanel">
<ul class="BigAUi"><div onclick="Menu(this, 'M1')">快速导航</div>
<ul id="M1" class="AUi">
<li class="ALi" onclick="thirdparty6()">YDOOK CN</li>
<li class="ALi" onclick="thirdparty7()">YDOOK EN</li>
</ul>
</ul>
<ul class="BigAUi"><div onclick="Menu(this, 'M2')">关于作者</div>
<ul id="M2" class="AUi">
<li class="ALi" onclick="Btn4()">各类教程</li>
<li class="ALi" onclick="Btn5()">技术科研</li>
</ul>
</ul>
<div class="NavigateBox">
<div class="NavigateBoxLeft">
<div class="NavigateBoxLeftBtn" onclick="Navigation('go1')"><<</div>
<div class="NavigateBoxLeftBtn" onclick="Navigation('go2')">>></div>
</div>
<div class="NavigateBoxRight">
<div class="NavigateBoxRightBtn" onclick="Navigation('go3')">⇑</div>
<div class="NavigateBoxRightBtn" onclick="Navigation('go4')">⇒</div>
<div class="NavigateBoxRightBtn" onclick="Navigation('go5')">⇓</div>
</div>
</div>
</div>
</div>
<div class="CenterBox">
<div class="HoldBox">
<!-- =============================== -->
<div class="NormalTitleBox">
林进威<br>开源软件项目大全
</div>
<!-- =============================== -->
<div class="Content">
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<div class="SubTitleBox">
<div class="SubTitleBtn">开源贡献汇总</div>
<div class="SubTitleCont">
<div class="SubTitleItem" onclick="opensource1()">Way</div>
<div class="SubTitleItem" onclick="opensource2()">PyDraw</div>
<div class="SubTitleItem" onclick="opensource3()">MyPlayer</div>
<div class="SubTitleItem" onclick="opensource4()">YWeb</div>
<div class="SubTitleItem" onclick="opensource5()">YDB</div>
<div class="SubTitleItem" onclick="opensource6()">YecPad</div>
<div class="SubTitleItem" onclick="opensource7()">YecPen</div>
<div class="SubTitleItem" onclick="opensource8()">YecText</div>
<div class="SubTitleItem" onclick="opensource9()">FrontFollowing</div>
<div class="SubTitleItem" onclick="opensource10()">ydookgithub</div>
<div class="SubTitleItem" onclick="opensource11()">ydookweb1</div>
<div class="SubTitleItem" onclick="opensource12()">ydookwebinitial</div>
</div>
</div>
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<div class="SubTitleBox">
<a class="SubTitleBtn" target="_blank" href="https://github.com/JYLinOK/Way">Way</a>
<div class="SubTitleCont">
<div class="PictureBack">
<br>
<div class="PictureCent" style="background: url(./pictures/gif/Way.gif) no-repeat;
background-size: 100% 100%; width: 260px; height: 260px; "></div>
<br>
</div>
<br>
1. 基于 LGPL-2.1 License 协议开源。<br>
2. 一个简单而快速的前端生成器库框架。<br>
3. 可以快速地进行模块化开发, 避免重复繁琐的代码劳动。<br>
4. 可以智能地多页面同时配置路由,避免重复路由及其各个链接路径的不同配置。<br>
5. 可以通过所见即所得的方式,快速编辑前端页面,并兼容各种框架同时编辑。<br>
6. 本框架库是 Jinwei Lin 主力开源产品,并保持着优秀的更新速度与频率。<br>
7. 本软件可以让您以用框架开放的速度和乐趣,快速开发原生JS或TS和HTML网站。<br>
8. 通过本软件组件化编写生成的前端页面,可以消除所有加工痕迹。让您的网页看起来就像手动编写一样。<br>
9. 通过本软件组件化编写生成的前端页面,就是原生JS或TS和HTML网站页面,天然支持 SEO。<br>
<br>
<a class="SubTitleItem" target="_blank" href="https://github.com/JYLinOK/Way">点击访问 Way</a>
</div>
</div>
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<div class="SubTitleBox">
<a class="SubTitleBtn" target="_blank" href="https://github.com/JYLinOK/PyDraw">PyDraw</a>
<div class="SubTitleCont">
<br>
1. 基于 MIT License 协议开源。<br>
2. 一个简单快速的 Python GUI 所见即所得的实时的界面生成器。<br>
3. 基于 Python 内置库 Tkinter 开发。<br>
4. 可以通过简单的拖拽直接生成对应的 Python 代码。<br>
5. 可以通过所见即所得的方式,快速生成与编辑 Python GUI 界面。<br>
<br>
<a class="SubTitleItem" target="_blank" href="https://github.com/JYLinOK/PyDraw">点击访问 PyDraw</a>
</div>
</div>
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<div class="SubTitleBox">
<a class="SubTitleBtn" target="_blank" href="https://github.com/JYLinOK/YWeb">YWeb</a>
<div class="SubTitleCont">
<br>
1. 基于 AGPL-3.0 License 协议开源。<br>
2. 一个简单的基本而稳定和快速的 web 服务器软件框架,完全由 Golang 编码开发。<br>
3. 能够自动解析制定目录下的静态文件,包括图片等,并呈现到前端。<br>
4. 超过十六个月的稳定运行测试,具有令人满意的稳定性与快速相应能力。<br>
5. 具有硬件网卡防破解防转移功能,为服务器安全增加保障。<br>
6. 与 Jinwei Lin 开发的 YDB 数据库具有天然切合特性。两者结合运行时流畅而稳定。<br>
<br>
<a class="SubTitleItem" target="_blank" href="https://github.com/JYLinOK/YWeb">点击访问 YWeb</a>
</div>
</div>
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<div class="SubTitleBox">
<a class="SubTitleBtn" target="_blank" href="https://github.com/JYLinOK/YDB">YDB</a>
<div class="SubTitleCont">
<br>
1. 基于 GPL-3.0 License 协议开源。<br>
2. 一个轻量级的,快速相应的,稳定的数据库,完全由 Golang 编码开发。<br>
3. 基于 JSON 格式,提供数据文件的永久性存储。<br>
4. 提供简单快捷的,进行增删改查功能数据库控制接口。<br>
5. 超过十六个月的稳定运行测试,具有令人满意的稳定性与快速相应能力。<br>
6. 具有硬件网卡防破解防转移功能,为服务器安全增加保障。<br>
7. 与 Jinwei Lin 开发的 YWeb 数据库具有天然切合特性。两者结合运行时流畅而稳定。<br>
<br>
<a class="SubTitleItem" target="_blank" href="https://github.com/JYLinOK/YDB">点击访问 YDB</a>
</div>
</div>
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<div class="SubTitleBox">
<a class="SubTitleBtn" target="_blank" href="https://github.com/JYLinOK/MyPlayer">MyPlayer</a>
<div class="SubTitleCont">
<br>
1. 基于 MIT License 协议开源。<br>
2. 一个轻量级的,快速相应的,稳定的音视频播放器。<br>
3. 支持 .wav .mp3 .wma .flv .ogg .mp4 .aif 格式。<br>
4. 通过调用系统默认播放器实现播放音视频文件的功能。<br>
5. 在命令行或终端窗口直接运行,可以搜索所在文件夹内的所有音视频文件并打印。<br>
6. 具有顺序播放和直接输出序号来选择指定音视频文件进行播放的功能。<br>
7. 本软件的一个主要目的是,结合AI模块开发 AI智能媒体。可以快速方便地进行测试。<br>
<br>
<a class="SubTitleItem" target="_blank" href="https://github.com/JYLinOK/MyPlayer">点击访问
MyPlayer</a>
</div>
</div>
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<div class="SubTitleBox">
<a class="SubTitleBtn" target="_blank" href="https://github.com/JYLinOK/YecPad">YecPad</a>
<div class="SubTitleCont">
<br>
1. 基于 AGPL-3.0 License 协议开源。<br>
2. 一个轻量级的,快速相应的,稳定的,运行于 Windows 系统的文本编辑器。<br>
3. 本软件可以看做是 Window 系统内嵌的记事本软件的编辑升级版或功能丰富版。<br>
4. 支持文本文件的编辑,包括: 控制字体大小、颜色、粗细、左对齐、右对齐、居中对齐等等功能。
<br>
<a class="SubTitleItem" target="_blank" href="https://github.com/JYLinOK/YecPad">点击访问 YecPad</a>
</div>
</div>
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<div class="SubTitleBox">
<a class="SubTitleBtn" target="_blank" href="https://github.com/JYLinOK/YecPen">YecPen</a>
<div class="SubTitleCont">
<br>
1. 基于 AGPL-3.0 License 协议开源。<br>
2. 一个轻量级的,快速相应的,稳定的,运行于 Windows 系统的绘图展示软件。<br>
3. 可以通过实时地调整三角函数的参数,动态地从右到左地展示三角正弦函数的图像。<br>
4. 三角正弦函数的图像的粗细可以调整。对实时的动态的图像可以进行暂停和放大操作。
5. 可以使用不同粗细和颜色的画笔进行涂鸦或者素描绘画。绘制后的图片可以保存到本地。
<br>
<a class="SubTitleItem" target="_blank" href="https://github.com/JYLinOK/YecPen">点击访问 YecPen</a>
</div>
</div>
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<div class="SubTitleBox">
<a class="SubTitleBtn" target="_blank" href="https://github.com/JYLinOK/YecPen">YecPen</a>
<div class="SubTitleCont">
<br>
1. 基于 AGPL-3.0 License 协议开源。<br>
2. 一个轻量级的,快速相应的,稳定的,运行于 Windows 系统的绘图展示软件。<br>
3. 可以通过实时地调整三角函数的参数,动态地从右到左地展示三角正弦函数的图像。<br>
4. 三角正弦函数的图像的粗细可以调整。对实时的动态的图像可以进行暂停和放大操作。
5. 可以使用不同粗细和颜色的画笔进行涂鸦或者素描绘画。绘制后的图片可以保存到本地。
<br>
<a class="SubTitleItem" target="_blank" href="https://github.com/JYLinOK/YecPen">点击访问 YecPen</a>
</div>
</div>
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<div class="SubTitleBox">
<a class="SubTitleBtn" target="_blank" href="https://github.com/JYLinOK/YecText">YecText</a>
<div class="SubTitleCont">
<br>
1. 基于 AGPL-3.0 License 协议开源。<br>
2. 一个轻量级的,快速相应的,稳定的,运行于 Windows 系统的文本阅读器软件。<br>
3. 可以快速打开文本文件,同时进行自动滚动式阅读。而且,自动阅读的速度可以调节。<br>
4. 阅读器的字体大小和颜色,以及阅读器的背景颜色都是可以简易地设置和调节的。
<br>
<a class="SubTitleItem" target="_blank" href="https://github.com/JYLinOK/YecText">点击访问
YecText</a>
</div>
</div>
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<div class="SubTitleBox">
<a class="SubTitleBtn" target="_blank"
href="https://github.com/JYLinOK/FrontFollowing">FrontFollowing</a>
<div class="SubTitleCont">
<br>
1. 基于 AGPL-3.0 License 协议开源。<br>
2. 是一个基于前向追踪技术的科研报告和论文集。<br>
3. 完全由 Jinwei Lin 进行撰写和研究,为个人独力成果。<br>
4. 包含数个大章节,精彩的理论阐述图片超过120张。
5. 全英文编写,论文总字数超过 70,000 字。
<br>
<a class="SubTitleItem" target="_blank" href="https://github.com/JYLinOK/FrontFollowing">点击访问
FrontFollowing</a>
</div>
</div>
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<div class="SubTitleBox">
<a class="SubTitleBtn" target="_blank"
href="https://github.com/JYLinOK/ydook.com.version1">ydook.com.version1</a>
<div class="SubTitleCont">
<br>
1. 基于 Apache License 2.0 协议开源。<br>
2. 纯JS+HTML+CSS编写的个人博客型网站。<br>
3. 具有选择显示主题,字体和阅读窗口颜色的功能。<br>
<br>
<a class="SubTitleItem" target="_blank"
href="https://github.com/JYLinOK/ydook.com.version1">点击访问 ydook.com.version1</a>
</div>
</div>
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<div class="SubTitleBox">
<a class="SubTitleBtn" target="_blank" href="https://github.com/JYLinOK/ydookweb1">ydookweb1</a>
<div class="SubTitleCont">
<br>
1. 基于 MIT License 协议开源。<br>
2. 基于 Vue 编写的个人博客型网站。<br>
3. 特点是竖直布局的侧边栏与侧面面板动态展开。<br>
4. 具有个人名言警句收录和展示功能,该功能是动态的。<br>
5. 具有自适应界面分别率的功能,能够在: 小屏幕移动终端、手机、平板和电脑等多种不同设备中自适应地,以最佳的分辨率和布局进行展示。<br>
<br>
<a class="SubTitleItem" target="_blank" href="https://github.com/JYLinOK/ydookweb1">点击访问 ydookweb1</a>
</div>
</div>
<!-- ======================================================================= -->
<!-- ======================================================================= -->
<div class="SubTitleBox">
<a class="SubTitleBtn" target="_blank" href="https://github.com/JYLinOK/ydookgithub">ydookgithub</a>
<div class="SubTitleCont">
<br>
1. 基于 GPL-3.0 License 协议开源。<br>
2. 本软件是 Jinwei Lin 在 GitHub 上使用免费空间构建的个人网站。<br>
3. 目前部署的域名为: www.ydook.cn。<br>
<br>
<a class="SubTitleItem" target="_blank" href="https://github.com/JYLinOK/ydookgithub">点击访问 ydookgithub</a>
<a class="SubTitleItem" target="_blank" href="https://www.ydook.cn">点击访问 www.ydook.cn</a>
</div>
</div>
<!-- ======================================================================= -->
<!-- Content ======================================================================= -->
</div>
<div class="BottomBox">
<div class="BottomBoxUp">
<div class="BottomBoxLeft">
<div class="BottomItemLef" onclick="Btn1()">
首页
</div>
<br>
<br>
<br>
<div class="BottomItemLef" onclick="Btn2()">
关于
</div>
<br><br>
<div class="BottomItemLef" onclick="Btn4()">
教程
</div>
</div>
<div class="BottomBoxRight">
<div class="BottomItemRight" onclick="UpTop()">
顶部
</div>
<br>
<br>
<br>
<div class="BottomItemRight" onclick="Advance()">
前进
</div>
<br><br>
<div class="BottomItemRight" onclick="Return()">
后退
</div>
</div>
</div>
<div class="BottomBoxDown">
<a class="ALink" style="color: white;" target="_blank" href="https://beian.miit.gov.cn/">粤ICP备19004091号 © 2019-2022 www.ydoo.com</a>
</div>
</div>
<div class="BottomGap"></div>
<!-- HoldBox -->
</div>
</div>
<!-- CenterBox ======== -->
</body>
<script>
function UpTop() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
function Advance() {
window.history.go(1);
}
function Return() {
window.history.go(-1);
}
</script>
<script>
function MenuFold() {
var Div = document.getElementById('MenuPanel');
if (Div.style.display == 'none') {
Div.style.display = 'block';
} else {
Div.style.display = 'none';
}
}
function Menu(obj, ulID) {
var ulDiv = document.getElementById(ulID);
if (ulDiv.style.display == 'none') {
ulDiv.style.display = 'block';
} else {
ulDiv.style.display = 'none';
}
}
function GoLi(ilID) {
var newLink = './way' + ilID + '.html'
window.location.href = newLink;
}
function MenuDown(event) {
var menubox = document.getElementById('MenuBox');
var menubtn = document.getElementById('MenuBtn');
var menupanel = document.getElementById('MenuPanel');
var before_x = menubox.offsetLeft
var before_y = menubox.offsetTop
var down_x = event.clientX
var down_y = event.clientY
document.onmousemove = function (e) {
// console.log(' \nmenubox.offsetTop = ', menubox.offsetTop);
// console.log(' menubox.offsetLeft = ', menubox.offsetLeft);
// console.log('\ne.clientX = ', e.clientX);
// console.log('e.clientY = ', e.clientY);
var move_x = e.clientX
var move_y = e.clientY
var new_x = move_x - down_x
var new_y = move_y - down_y
menubox.style.left = (before_x + new_x).toString() + 'px';
menubox.style.top = (before_y + new_y).toString() + 'px';
}
document.onmouseup = function () {
document.onmousemove = null;
}
}
// ==============================================================================
// ==============================================================================
// Phone
var menubox = document.querySelector('#MenuBox');
var menubtn = document.querySelector('#MenuBtn');
var MenuPanel = document.querySelector('#MenuPanel');
var maxAbleWidth = window.screen.width - 50;
var maxAbleHeight = window.screen.height - 50;
var phoneWTrans = 800;
menubtn.addEventListener('touchstart', function (e) {
if (window.screen.width < phoneWTrans) {
// console.log('touchstart>>');
var event = e || window.event;
var touch = event.targetTouches[0];
objAbleLeft = touch.clientX - menubox.offsetLeft;
objAbleTop = touch.clientY - menubox.offsetTop;
document.addEventListener('touchmove', preventE, { passive: false });
}
});
menubtn.addEventListener('touchmove', function (e) {
if (window.screen.width < phoneWTrans) {
// console.log('touchmove>>');
var event = e || window.event;
var touch = event.targetTouches[0];
var objtLeft = touch.clientX - objAbleLeft;
var objtTop = touch.clientY - objAbleTop;
if (objtLeft < 0) {
objtLeft = 0;
} else if (objtLeft >= maxAbleWidth) {
objtLeft = maxAbleWidth;
}
if (objtTop < 0) {
objtTop = 0;
} else if (objtTop >= maxAbleHeight) {
objtTop = maxAbleHeight;
}
menubox.style.left = objtLeft + 'px';
menubox.style.top = objtTop + 'px';
}
});
menubtn.addEventListener('touchend', function () {
if (window.screen.width < phoneWTrans) {
document.removeEventListener('touchmove', preventE, { passive: false });
}
}, { passive: false });
function preventE(e) {
e.preventDefault();
}
// ==============================================================================
// ==============================================================================
function MenuGo(code) {
if (code == 'Go') {
var obj = document.getElementById('Go1');
if (obj.style.display == 'none') {
obj.style.display = 'block';
} else {
obj.style.display = 'none';
}
}
}
function Navigation(code) {
if (code == 'go1') {
window.history.go(1);
}
if (code == 'go2') {
window.history.go(-1);
}
if (code == 'go3') {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
if (code == 'go4') {
document.body.scrollTop = document.body.scrollHeight / 2;
document.documentElement.scrollTop = document.body.scrollHeight / 2;
}
if (code == 'go5') {
document.body.scrollTop = document.body.scrollHeight;
document.documentElement.scrollTop = document.body.scrollHeight;
}
if (code == 'go6') {
window.location.reload();
}
}
</script>
<script>
function Btn1() {
window.location.href = "./index.html";
}
function Btn2() {
window.location.href = "./about.html";
}
function Btn3() {
window.location.href = "./author.html";
}
function Btn4() {
window.location.href = "./tutorials.html";
}
function Btn5() {
window.location.href = "./researches.html";
}
function Btn6() {
window.location.href = "./opensources.html";
}
function Btn7() {
window.location.href = "./sonwebs.html";
}
function Btn9() {
window.open("https://github.com/JYLinOK");
}
function Btn10() {
window.open("https://ydook.blog.csdn.net");
}
function Btn16() {
window.open('https://en.ydook.com' + window.location.pathname);
}
</script>
<script>
// opensource
function opensource1() {
window.open("https://github.com/JYLinOK/Way");
}
function opensource2() {
window.open("https://github.com/JYLinOK/PyDraw");
}
function opensource3() {
window.open("https://github.com/JYLinOK/MyPlayer");
}
function opensource4() {
window.open("https://github.com/JYLinOK/YWeb");
}
function opensource5() {
window.open("https://github.com/JYLinOK/YDB");
}
function opensource6() {
window.open("https://github.com/JYLinOK/YecPad");
}
function opensource7() {
window.open("https://github.com/JYLinOK/YecPen");
}
function opensource8() {
window.open("https://github.com/JYLinOK/YecText");
}
function opensource9() {
window.open("https://github.com/JYLinOK/FrontFollowing");
}
function opensource10() {
window.open("https://github.com/JYLinOK/ydookgithub");
}
function opensource11() {
window.open("https://github.com/JYLinOK/ydookweb1");
}
function opensource12() {
window.open("https://github.com/JYLinOK/ydookwebinitial");
}
// third party
function thirdparty0() {
window.open("https://ydook.blog.csdn.net");
}
function thirdparty1() {
window.open("https://github.com/JYLinOK");
}
function thirdparty2() {
window.open("https://my.oschina.net/linjinwei");
}
function thirdparty3() {
window.open("https://gitee.com/ydook");
}
function thirdparty4() {
window.open("https://www.cnblogs.com/ydook/");
}
function thirdparty5() {
window.open("https://www.jianshu.com/u/770c7784e3e6");
}
function thirdparty6() {
window.open("https://ydook.cn");
}
function thirdparty7() {
window.open("https://en.ydook.cn");
}
function thirdparty8() {
window.open("https://www.zhihu.com/people/ydook.com");
}
</script>
<style>
@media only screen and (min-width: 801px) {
body {
background: rgb(236, 236, 236);
margin: 0;
padding: 0;
text-align: center;
position: relative;
height: 100%;
}
.HeadLineM {
/* position: fixed; */
background: rgb(36, 131, 166);
width: 100%;
height: 45px;
z-index: 10;
left: 0px;
top: 0px;
}
.ToolBtn {
float: left;
margin-left: 10px;
margin-top: 3px;
margin-bottom: 3px;
height: 38px;
min-width: 60px;
padding-left: 8px;
padding-right: 8px;
/* background: lightseagreen; */
font-size: 18px;
text-align: center;
line-height: 38px;
color: white;
cursor: pointer;
user-select: none;
}
.ToolBtn:hover {
background: rgb(0, 255, 242);
color: black;
}
.CenterBox {
margin: 0 auto;
width: 1016px;
/* background: rgb(139, 179, 218); */
margin-top: 68px;
}
.HoldBox {
position: absolute;
margin: 0 auto;
width: 1016px;
min-height: 300px;
background: rgb(255, 255, 255);
margin-bottom: 88px;
}
.Content {
width: 982px;
margin: 0 auto;
margin-top: 130px;
margin-bottom: 10px;
text-align: left;
/* background: rgb(175, 250, 172); */
}
.BottomBox {
float: left;
width: 1016px;
min-height: 100px;
margin: 0 auto;
background: rgb(6, 166, 166);
text-align: left;
}
.BottomBoxLeft {
float: left;
width: 50%;
height: 100%;
/* background: rgb(65, 152, 195); */
text-align: left;
}
.BottomBoxRight {
float: left;
width: 50%;
height: 100%;
/* background: rgb(192, 245, 171); */
text-align: left;
}
.BottomItemLef {
float: left;
text-align: center;
width: auto;
height: 38px;
margin: 0 auto;
margin-top: 10px;
margin-left: 10px;
line-height: 38px;
background: rgb(6, 166, 166);
color: white;
padding-left: 8px;
padding-right: 8px;
cursor: pointer;
font-weight: bolder;
}
.BottomItemLef:hover {
background: rgb(16, 138, 199);
}
.BottomItemRight {
float: right;
text-align: center;
min-width: 60px;
min-height: 38px;
margin: 0 auto;
margin-top: 10px;
margin-right: 10px;
line-height: 38px;
background: rgb(6, 166, 166);
color: white;
padding-left: 8px;
padding-right: 8px;
cursor: pointer;
font-weight: bolder;
}
.BottomItemRight:hover {
background: rgb(16, 138, 199);
}
.BottomGap {
float: left;
width: 1016px;
height: 66px;
margin: 0 auto;
background: rgb(236, 236, 236);
}
.BottomBoxUp {
float: left;
width: 100%;
min-height: 80px;
/* background: rgb(3, 88, 99); */
}
.BottomBoxDown {
float: left;
width: 100%;
min-height: 30px;
line-height: 30px;
background: rgb(0, 138, 138);
text-align: center;
color: white;
font-size: 13px;
}
.ALink {
text-decoration: none;
color: black;
}
.Pic {
margin: 0 auto;
text-align: center;
/* background: rgb(231, 251, 255) no-repeat; */
}
.Code {
width: 98%;
height: auto;
background: rgb(6, 66, 66);
font-family: Consolas;
padding: 10px;
overflow-x: scroll;
color: white;
}
.Note {
width: 98%;
min-height: 300px;
background: rgb(226, 255, 250);
font-family: Consolas;
padding: 10px;
}
/* ============================================================ */
.MenuBox{
position: fixed;
top: 50px;
left: 10px;
width: 50px;
height: 50px;
border-radius: 100%;
/* background: rgb(166, 30, 6); */
z-index: 10;
background: url('./pictures/gif/Y.gif') no-repeat;
background-size: 100% 100%;
user-select: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.MenuBtn{
float: left;
width: 50px;
height: 50px;
border-radius: 100%;
/* background: rgb(6, 166, 166); */
user-select: none;
cursor: pointer;
user-select: none;
}
.MenuBtn:active {
background: rgba(0, 228, 228, 0.6);
}
.MenuPanel {
float: left;
text-align: left;
min-width: 200px;
min-height: 100px;
max-height: 500px;
border-radius: 8px;
background: rgba(251, 255, 251, 0.8);
overflow-y: scroll;
scrollbar-width: none; /* Firefox */
}
.MenuPanel::-webkit-scrollbar {
/* background: rgba(255, 250, 205, 0.6); */
background: rgba(116, 106, 96, 0.6);
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
}
.MenuPanel::-webkit-scrollbar-thumb {
background: rgba(206, 233, 233, 0.8);
/* background: rgb(222, 233, 233); */
border-radius:8px;
border-radius:8px;
}
.MenuPanel::-webkit-scrollbar-thumb:hover {
background: rgb(133, 233, 188);
cursor: pointer;
}
/* ============================================================= */
.ALi {
list-style: none;
background: rgb(252, 252, 252);
margin-top: 5px;
margin-bottom: 5px;
font-size: 18px;
cursor: pointer;
user-select: none;
border-radius: 2px;
padding-left: 10px;
}
.ALi:hover {
background: rgb(166, 255, 238);
}
.AUi {
color: black;
margin-left: -30px;
list-style: none;
background: rgba(116, 106, 96, 0.6);
border: 1px solid rgb(0, 0, 0);
}
.BigAUi {
margin-top: 0px;
margin-bottom: 10px;
margin-left: -30px;
list-style: none;
background: rgb(222, 233, 233);
font-size: 20px;
cursor: pointer;
user-select: none;
padding-bottom: 1px;
}
.BigAUi:hover {
background: rgb(167, 240, 226);
}
/* ============================================================= */
/* ============================================================= */
.NavigateBox {
float: left;
width: 100%;
height: 90px;
background: rgba(66, 66, 66, 0.3);
cursor: pointer;
}
.NavigateBoxLeft {
float: left;
width: 50%;
height: 90px;
background: rgba(66, 66, 66, 0.3);
}
.NavigateBoxRight {
float: right;
width: 50%;
height: 90px;
background: rgba(66, 166, 166, 0.3);
}
.NavigateBoxLeftBtn {
float: left;
width: 100%;
height: 45px;
background: rgba(66, 66, 66, 0.3);
color: white;
line-height: 45px;
font-size: 20px;
text-align: center;
}
.NavigateBoxLeftBtn:hover {
font-weight: bolder;
color: rgb(0, 255, 255);
background: rgba(190, 190, 190, 0.3);
}
.NavigateBoxRightBtn {
float: left;
width: 100%;
height: 30px;
background: rgba(66, 66, 66, 0.3);
color: white;
line-height: 30px;
font-size: 20px;
text-align: center;
}