-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxxxlockhistory.html
1247 lines (912 loc) · 39.4 KB
/
xxxlockhistory.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="keywords" content="xXx时间屏保更新记录, xXx软件">
<meta name="description" content="专注分享原创软件及原创文章">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="renderer" content="webkit|ie-stand|ie-comp">
<meta name="mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- Global site tag (gtag.js) - Google Analytics -->
<title>xXx时间屏保更新记录 | xXx软件</title>
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="stylesheet" type="text/css" href="/libs/awesome/css/all.css">
<link rel="stylesheet" type="text/css" href="/libs/materialize/materialize.min.css">
<link rel="stylesheet" type="text/css" href="/libs/aos/aos.css">
<link rel="stylesheet" type="text/css" href="/libs/animate/animate.min.css">
<link rel="stylesheet" type="text/css" href="/libs/lightGallery/css/lightgallery.min.css">
<link rel="stylesheet" type="text/css" href="/css/matery.css">
<link rel="stylesheet" type="text/css" href="/css/my.css">
<script src="/libs/jquery/jquery.min.js"></script>
<meta name="generator" content="Hexo 5.2.0"><link rel="stylesheet" href="/css/prism-tomorrow.css" type="text/css"></head>
<body>
<header class="navbar-fixed">
<nav id="headNav" class="bg-color nav-transparent">
<div id="navContainer" class="nav-wrapper container">
<div class="brand-logo">
<a href="/" class="waves-effect waves-light">
<img src="/medias/logo.png" class="logo-img" alt="LOGO">
<span class="logo-span">xXx软件</span>
</a>
</div>
<a href="#" data-target="mobile-nav" class="sidenav-trigger button-collapse"><i class="fas fa-bars"></i></a>
<ul class="right nav-menu">
<li class="hide-on-med-and-down nav-item">
<a href="/" class="waves-effect waves-light">
<i class="fas fa-home" style="zoom: 0.6;"></i>
<span>首页</span>
</a>
</li>
<li class="hide-on-med-and-down nav-item">
<a href="/tags" class="waves-effect waves-light">
<i class="fas fa-tags" style="zoom: 0.6;"></i>
<span>标签</span>
</a>
</li>
<li class="hide-on-med-and-down nav-item">
<a href="/categories" class="waves-effect waves-light">
<i class="fas fa-bookmark" style="zoom: 0.6;"></i>
<span>分类</span>
</a>
</li>
<li class="hide-on-med-and-down nav-item">
<a href="/archives" class="waves-effect waves-light">
<i class="fas fa-archive" style="zoom: 0.6;"></i>
<span>归档</span>
</a>
</li>
<li class="hide-on-med-and-down nav-item">
<a href="/about" class="waves-effect waves-light">
<i class="fas fa-user-circle" style="zoom: 0.6;"></i>
<span>关于</span>
</a>
</li>
<li class="hide-on-med-and-down nav-item">
<a href="/friends" class="waves-effect waves-light">
<i class="fas fa-address-book" style="zoom: 0.6;"></i>
<span>友情链接</span>
</a>
</li>
<li>
<a href="#searchModal" class="modal-trigger waves-effect waves-light">
<i id="searchIcon" class="fas fa-search" title="搜索" style="zoom: 0.85;"></i>
</a>
</li>
</ul>
<div id="mobile-nav" class="side-nav sidenav">
<div class="mobile-head bg-color">
<img src="/medias/logo.png" class="logo-img circle responsive-img">
<div class="logo-name">xXx软件</div>
<div class="logo-desc">
专注分享原创软件及原创文章
</div>
</div>
<ul class="menu-list mobile-menu-list">
<li class="m-nav-item">
<a href="/" class="waves-effect waves-light">
<i class="fa-fw fas fa-home"></i>
首页
</a>
</li>
<li class="m-nav-item">
<a href="/tags" class="waves-effect waves-light">
<i class="fa-fw fas fa-tags"></i>
标签
</a>
</li>
<li class="m-nav-item">
<a href="/categories" class="waves-effect waves-light">
<i class="fa-fw fas fa-bookmark"></i>
分类
</a>
</li>
<li class="m-nav-item">
<a href="/archives" class="waves-effect waves-light">
<i class="fa-fw fas fa-archive"></i>
归档
</a>
</li>
<li class="m-nav-item">
<a href="/about" class="waves-effect waves-light">
<i class="fa-fw fas fa-user-circle"></i>
关于
</a>
</li>
<li class="m-nav-item">
<a href="/friends" class="waves-effect waves-light">
<i class="fa-fw fas fa-address-book"></i>
友情链接
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<script src="/libs/cryptojs/crypto-js.min.js"></script>
<script>
(function() {
let pwd = '';
if (pwd && pwd.length > 0) {
if (pwd !== CryptoJS.SHA256(prompt('请输入访问本文章的密码')).toString(CryptoJS.enc.Hex)) {
alert('密码错误,将返回主页!');
location.href = '/';
}
}
})();
</script>
<div class="bg-cover pd-header post-cover" style="background-image: url('/medias/featureimages/21.jpg')">
<div class="container" style="right: 0px;left: 0px;">
<div class="row">
<div class="col s12 m12 l12">
<div class="brand">
<h1 class="description center-align post-title">xXx时间屏保更新记录</h1>
</div>
</div>
</div>
</div>
</div>
<main class="post-container content">
<link rel="stylesheet" href="/libs/tocbot/tocbot.css">
<style>
#articleContent h1::before,
#articleContent h2::before,
#articleContent h3::before,
#articleContent h4::before,
#articleContent h5::before,
#articleContent h6::before {
display: block;
content: " ";
height: 100px;
margin-top: -100px;
visibility: hidden;
}
#articleContent :focus {
outline: none;
}
.toc-fixed {
position: fixed;
top: 64px;
}
.toc-widget {
width: 345px;
padding-left: 20px;
}
.toc-widget .toc-title {
margin: 35px 0 15px 0;
padding-left: 17px;
font-size: 1.5rem;
font-weight: bold;
line-height: 1.5rem;
}
.toc-widget ol {
padding: 0;
list-style: none;
}
#toc-content {
height: calc(100vh - 250px);
overflow: auto;
}
#toc-content ol {
padding-left: 10px;
}
#toc-content ol li {
padding-left: 10px;
}
#toc-content .toc-link:hover {
color: #42b983;
font-weight: 700;
text-decoration: underline;
}
#toc-content .toc-link::before {
background-color: transparent;
max-height: 25px;
position: absolute;
right: 23.5vw;
display: block;
}
#toc-content .is-active-link {
color: #42b983;
}
#floating-toc-btn {
position: fixed;
right: 15px;
bottom: 76px;
padding-top: 15px;
margin-bottom: 0;
z-index: 998;
}
#floating-toc-btn .btn-floating {
width: 48px;
height: 48px;
}
#floating-toc-btn .btn-floating i {
line-height: 48px;
font-size: 1.4rem;
}
</style>
<div class="row">
<div id="main-content" class="col s12 m12 l9">
<!-- 文章内容详情 -->
<div id="artDetail">
<div class="card">
<div class="card-content article-info">
<div class="row tag-cate">
<div class="col s7">
<div class="article-tag">
<a href="/tags/xXx%E8%BD%AF%E4%BB%B6/">
<span class="chip bg-color">xXx软件</span>
</a>
<a href="/tags/xXx%E6%97%B6%E9%97%B4%E5%B1%8F%E4%BF%9D/">
<span class="chip bg-color">xXx时间屏保</span>
</a>
</div>
</div>
<div class="col s5 right-align">
<div class="post-cate">
<i class="fas fa-bookmark fa-fw icon-category"></i>
<a href="/categories/%E5%8E%9F%E5%88%9B%E8%BD%AF%E4%BB%B6/" class="post-category">
原创软件
</a>
</div>
</div>
</div>
<div class="post-info">
<div class="post-date info-break-policy">
<i class="far fa-calendar-minus fa-fw"></i>发布日期:
2024-09-10
</div>
<div class="info-break-policy">
<i class="far fa-file-word fa-fw"></i>文章字数:
1.6k
</div>
<div id="busuanzi_container_page_pv" class="info-break-policy">
<i class="far fa-eye fa-fw"></i>阅读次数:
<span id="busuanzi_value_page_pv"></span>
</div>
</div>
</div>
<hr class="clearfix">
<div class="card-content article-card-content">
<div id="articleContent">
<h3 id="后续计划更新功能"><a href="#后续计划更新功能" class="headerlink" title="后续计划更新功能"></a><code>后续计划更新功能</code></h3><ul>
<li><strong>可以做为屏保来使用(V4.1)</strong></li>
<li>高分屏支持(V4.1)</li>
<li><strong>每年教师节(9.10)更新</strong></li>
</ul>
<hr>
<h3 id="20240910-V4-0"><a href="#20240910-V4-0" class="headerlink" title="20240910 V4.0"></a><code>20240910</code> V4.0</h3><ul>
<li><p>添加滚动字幕特效</p>
</li>
<li><p>添加隐私模式,禁用透明度,无法透视到桌面</p>
</li>
<li></li>
</ul>
<hr>
<h3 id="20230910-V3-9"><a href="#20230910-V3-9" class="headerlink" title="20230910 V3.9"></a><code>20230910</code> V3.9</h3><ul>
<li><p>添加视频背景效果</p>
</li>
<li><p>添加视频背景快捷键:Ctrl+0表示静音;Ctrl+9表示解除静音</p>
</li>
<li><p>添加水印效果(超酷)</p>
</li>
<li><p><del>增加了对屏保参数的处理,可以安装为屏保使用(V4.0实现)</del></p>
</li>
<li><p><del>解决Win8及以上系统下屏保Scr没有透明效果的问题(V4.0实现)</del></p>
</li>
<li><p>修复某特定情况下进入设置页面导致程序崩溃的问题</p>
</li>
<li><p>更新帮助页面</p>
</li>
<li><p>更新设置页面</p>
</li>
</ul>
<hr>
<h3 id="20211122-V3-8"><a href="#20211122-V3-8" class="headerlink" title="20211122 V3.8"></a><code>20211122</code> V3.8</h3><ul>
<li>兼容支持Win11</li>
<li><strong>添加水波动画效果(自动与手动),酷就一个字</strong></li>
<li>支持直接将ttf格式字体文件放在font目录下,不用安装即可使用</li>
<li>优化动画效果</li>
<li>本版本需要.net framework4.7.2支持</li>
<li>其它Bug修复</li>
</ul>
<hr>
<h3 id="20190504-V3-7"><a href="#20190504-V3-7" class="headerlink" title="20190504 V3.7"></a><code>20190504</code> V3.7</h3><ul>
<li>添加了可自定义的浮动文字动画效果,<strong>相当炫酷</strong></li>
<li>可更换文字、时间、浮动文字的字体</li>
<li>支持腾讯桌面、360桌面隐藏桌面图标</li>
<li>其它Bug修复</li>
</ul>
<hr>
<h3 id="20171227-V3-6-1"><a href="#20171227-V3-6-1" class="headerlink" title="20171227 V3.6.1"></a><code>20171227</code> V3.6.1</h3><ul>
<li>紧急修复某种情况下按回车键会关闭程序的问题(此Bug存在于1.0到3.6的所有版本)</li>
</ul>
<hr>
<h3 id="20171209-V3-6"><a href="#20171209-V3-6" class="headerlink" title="20171209 V3.6"></a><code>20171209</code> V3.6</h3><ul>
<li>新增双显示器支持</li>
<li>添加启动程序时将所有窗口最小化的功能(可以更好的透视桌面壁纸)</li>
<li>修改配置文件格式,更高效更安全(需要重新保存设置)</li>
<li>修复在某些电脑上隐藏桌面图标无效的问题</li>
<li>修复在已经隐藏桌面图标的情况下启动程序,关闭程序时桌面图标会显示的问题</li>
<li>去掉冗余代码</li>
<li>其他BUG</li>
</ul>
<hr>
<h3 id="20170808-V3-5"><a href="#20170808-V3-5" class="headerlink" title="20170808 V3.5"></a><code>20170808</code> V3.5</h3><ul>
<li>解锁密码增加前缀、后缀 ,安全性更高</li>
<li>添加打赏作者功能</li>
<li>更换立体图标</li>
<li>其他小BUG修复</li>
</ul>
<hr>
<h3 id="20170501-V3-4"><a href="#20170501-V3-4" class="headerlink" title="20170501 V3.4"></a><code>20170501</code> V3.4</h3><ul>
<li>添加:背景图片可以以幻灯片的形式播放文件夹下所有图片</li>
<li>添加:背景颜色可更改</li>
<li>添加:可隐藏时间和说明文字,此种情况下可按Esc键短暂显示时间</li>
<li>添加:可隐藏桌面图标,只看桌面壁纸</li>
<li>添加:可隐藏鼠标指针</li>
<li>添加:系统无操作N分钟后可【关闭显示器】</li>
<li>添加:只能同时运行一个程序,防止程序多开</li>
<li>修复:无配置文件时自动加载默认配置</li>
<li>修复:开机第一次启动软件时动画效果无法显示的问题</li>
<li>修复:软件启动动画显示时偶尔会有卡顿的问题</li>
<li>修复:修改超级密码无操作后可直接按回车退出程序的问题</li>
<li>调整:部分功能不再支持XP系统</li>
<li>调整:【帮助】、【倒计时说明】颜色与时间颜色一致</li>
<li>调整:设置界面UI</li>
<li>其它Bug修改</li>
</ul>
<hr>
<h3 id="20161029-V3-3-1"><a href="#20161029-V3-3-1" class="headerlink" title="20161029 V3.3.1"></a><code>20161029</code> V3.3.1</h3><ul>
<li>优化代码,修复在某些时间格式下只显示“上午”、“下午”不显示时间的问题</li>
<li>修复:此版本开始程序可以自动获取焦点</li>
<li>修复:在相当复杂的操作步骤后可以通过某些方式关闭程序的问题</li>
</ul>
<hr>
<h3 id="20161023-V3-3"><a href="#20161023-V3-3" class="headerlink" title="20161023 V3.3"></a><code>20161023</code> V3.3</h3><ul>
<li>解决2个BUG:</li>
<li>某些情况下能直接关闭程序的问题</li>
<li>某些操作步骤后可以直接关闭程序的问题</li>
</ul>
<hr>
<h3 id="20161019-V3-2"><a href="#20161019-V3-2" class="headerlink" title="20161019 V3.2"></a><code>20161019</code> V3.2</h3><ul>
<li><p>添加背景图片支持(背景图片支持设置透明度)</p>
<p> - <strong>友情提示:</strong> 背景图片用好的话非常漂亮,图片如果不匹配就是坑</p>
</li>
<li><p>设置界面UI样式优化,更养眼(可更改主题)</p>
</li>
<li><p>修复颜色选择时,点击【取消】后颜色自动变成黑色的问题</p>
</li>
<li><p>修复程序启动动画完成后会卡顿的问题</p>
</li>
<li><p>修复Ctrl+↑增加透明度、Ctrl+↓降低透明度时丢失部分设置信息的问题</p>
</li>
<li><p>更改加密方式<strong>提高安全性</strong></p>
</li>
<li><p>删除从V1.0版就存在的<strong>调试</strong>密码</p>
</li>
<li><p>其它BUG修复</p>
</li>
<li><p>下一个版本V3.3:主要实现屏保功能</p>
</li>
</ul>
<h3 id="20160703-V3-1"><a href="#20160703-V3-1" class="headerlink" title="20160703 V3.1"></a><code>20160703</code> V3.1</h3><ul>
<li>修复<code>非win10系统</code>中任务管理器无法禁用的问题</li>
<li>添加功能:隐藏<code>【帮助】</code>按钮,界面看起来更清爽。感谢网友<code>霍增光</code>及<code>倘徉湖畔</code>的建议</li>
<li>添加功能:程序失去焦点事件的处理</li>
<li><code>显示</code>超级密码时<code>奇数位</code>使用掩码,别人站在身后也不怕超级密码被偷看</li>
<li>修复Ctrl+↑增加透明度、Ctrl+↓降低透明度无响应的问题</li>
<li>修复3.0版中自启动的快捷方式名称错乱的问题(3.0版为xyzlock.lnk,3.1及以后统一为xxxlock.lnk)</li>
</ul>
<hr>
<h3 id="20160609-V3-0"><a href="#20160609-V3-0" class="headerlink" title="20160609 V3.0"></a><code>20160609</code> V3.0</h3><ul>
<li>完全重写代码</li>
<li>更名为 <code>xxx时间屏保</code></li>
<li><strong>回车键</strong>功能:清除密码、确认密码</li>
</ul>
<hr>
<h3 id="20151027-V2-0"><a href="#20151027-V2-0" class="headerlink" title="20151027 V2.0"></a><code>20151027</code> V2.0</h3><ul>
<li>增加功能:锁屏界面直接关机命令,请在设置中修改命令</li>
<li>增加功能:锁屏界面直接休眠命令,请在设置中修改命令</li>
<li>增加功能:电脑N分钟无操作后可自动关机或休眠</li>
<li>增加功能:Ctrl+↑增加透明度、Ctrl+↓降低透明度</li>
<li>增加功能:时间和显示文字可自定义颜色</li>
<li><strong>完全重写<code>透明度</code>相关代码,效率更高,看起来更美观</strong></li>
<li>重新设计配置文件格式,使之更安全更高效</li>
<li>修复了设置界面透明度与偏移值无法调整到某些数值的问题</li>
<li>修复了输入法自动变为英文的BUG</li>
<li>添加官方网站信息</li>
<li>其它更改</li>
</ul>
<hr>
<h3 id="20150720-V1-3"><a href="#20150720-V1-3" class="headerlink" title="20150720 V1.3"></a><code>20150720</code> V1.3</h3><ul>
<li>增加程序只能运行一个实例的功能</li>
<li>优化密码输入位数动画</li>
<li>修复休眠/睡眠唤醒时时间不更新的问题</li>
</ul>
<hr>
<h3 id="20150716-V1-2"><a href="#20150716-V1-2" class="headerlink" title="20150716 V1.2"></a><code>20150716</code> V1.2</h3><ul>
<li>隐藏任务栏图标</li>
<li>完全重写随系统启动功能</li>
</ul>
<hr>
<h3 id="20150710-V1-1"><a href="#20150710-V1-1" class="headerlink" title="20150710 V1.1"></a><code>20150710</code> V1.1</h3><ul>
<li>增加密码输入位数提示</li>
<li>修复设置英文键盘布局失败的问题</li>
<li>启动程序时将输入法设置为英文输入法</li>
</ul>
<hr>
<h3 id="20140608-V1-0"><a href="#20140608-V1-0" class="headerlink" title="20140608 V1.0"></a><code>20140608</code> V1.0</h3><ul>
<li>测试完成,第一个版本正式发布</li>
</ul>
<h3 id="20131203"><a href="#20131203" class="headerlink" title="20131203"></a><code>20131203</code></h3><ul>
<li>开始编码</li>
</ul>
</div>
<hr/>
<div class="reprint" id="reprint-statement">
<div class="reprint__author">
<span class="reprint-meta" style="font-weight: bold;">
<i class="fas fa-user">
文章作者:
</i>
</span>
<span class="reprint-info">
<a href="/about" rel="external nofollow noreferrer">龙家二少</a>
</span>
</div>
<div class="reprint__type">
<span class="reprint-meta" style="font-weight: bold;">
<i class="fas fa-link">
文章链接:
</i>
</span>
<span class="reprint-info">
<a href="http://www2.un69.cc/xxxlockhistory.html">http://www2.un69.cc/xxxlockhistory.html</a>
</span>
</div>
<div class="reprint__notice">
<span class="reprint-meta" style="font-weight: bold;">
<i class="fas fa-copyright">
版权声明:
</i>
</span>
<span class="reprint-info">
本博客所有文章除特別声明外,均采用
<a href="https://creativecommons.org/licenses/by/4.0/deed.zh" rel="external nofollow noreferrer" target="_blank">CC BY 4.0</a>
许可协议。转载请注明来源
<a href="/about" target="_blank">龙家二少</a>
!
</span>
</div>
</div>
<script async defer>
document.addEventListener("copy", function (e) {
let toastHTML = '<span>复制成功,请遵循本文的转载规则</span><button class="btn-flat toast-action" onclick="navToReprintStatement()" style="font-size: smaller">查看</a>';
M.toast({html: toastHTML})
});
function navToReprintStatement() {
$("html, body").animate({scrollTop: $("#reprint-statement").offset().top - 80}, 800);
}
</script>
<div class="tag_share" style="display: block;">
<div class="post-meta__tag-list" style="display: inline-block;">
<div class="article-tag">
<a href="/tags/xXx%E8%BD%AF%E4%BB%B6/">
<span class="chip bg-color">xXx软件</span>
</a>
<a href="/tags/xXx%E6%97%B6%E9%97%B4%E5%B1%8F%E4%BF%9D/">
<span class="chip bg-color">xXx时间屏保</span>
</a>
</div>
</div>
<div class="post_share" style="zoom: 80%; width: fit-content; display: inline-block; float: right; margin: -0.15rem 0;">
<link rel="stylesheet" type="text/css" href="/libs/share/css/share.min.css">
<div id="article-share">
<div class="social-share" data-sites="twitter,facebook,google,qq,qzone,wechat,weibo,douban,linkedin" data-wechat-qrcode-helper="<p>微信扫一扫即可分享!</p>"></div>
<script src="/libs/share/js/social-share.min.js"></script>
</div>
</div>
</div>
<style>
#reward {
margin: 40px 0;
text-align: center;
}
#reward .reward-link {
font-size: 1.4rem;
line-height: 38px;
}
#reward .btn-floating:hover {
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.2);
}
#rewardModal {
width: 320px;
height: 350px;
}
#rewardModal .reward-title {
margin: 15px auto;
padding-bottom: 5px;
}
#rewardModal .modal-content {
padding: 10px;
}
#rewardModal .close {
position: absolute;
right: 15px;
top: 15px;
color: rgba(0, 0, 0, 0.5);
font-size: 1.3rem;
line-height: 20px;
cursor: pointer;
}
#rewardModal .close:hover {
color: #ef5350;
transform: scale(1.3);
-moz-transform:scale(1.3);
-webkit-transform:scale(1.3);
-o-transform:scale(1.3);
}
#rewardModal .reward-tabs {
margin: 0 auto;
width: 210px;
}
.reward-tabs .tabs {
height: 38px;
margin: 10px auto;
padding-left: 0;
}
.reward-content ul {
padding-left: 0 !important;
}
.reward-tabs .tabs .tab {
height: 38px;
line-height: 38px;
}
.reward-tabs .tab a {
color: #fff;
background-color: #ccc;
}
.reward-tabs .tab a:hover {
background-color: #ccc;
color: #fff;
}
.reward-tabs .wechat-tab .active {
color: #fff !important;
background-color: #22AB38 !important;
}
.reward-tabs .alipay-tab .active {
color: #fff !important;
background-color: #019FE8 !important;
}
.reward-tabs .reward-img {
width: 210px;
height: 210px;
}
</style>
<div id="reward">
<a href="#rewardModal" class="reward-link modal-trigger btn-floating btn-medium waves-effect waves-light red">赏</a>
<!-- Modal Structure -->
<div id="rewardModal" class="modal">
<div class="modal-content">
<a class="close modal-close"><i class="fas fa-times"></i></a>
<h4 class="reward-title">你的赏识是我前进的动力</h4>
<div class="reward-content">
<div class="reward-tabs">
<ul class="tabs row">
<li class="tab col s6 alipay-tab waves-effect waves-light"><a href="#alipay">支付宝</a></li>
<li class="tab col s6 wechat-tab waves-effect waves-light"><a href="#wechat">微 信</a></li>
</ul>
<div id="alipay">
<img src="/medias/reward/alipay.png" class="reward-img" alt="支付宝打赏二维码">
</div>
<div id="wechat">
<img src="/medias/reward/wechat.png" class="reward-img" alt="微信打赏二维码">
</div>
</div>
</div>
</div>
</div>
</div>
<script>
$(function () {
$('.tabs').tabs();
});
</script>
</div>
</div>
<article id="prenext-posts" class="prev-next articles">
<div class="row article-row">
<div class="article col s12 m6" data-aos="fade-up">
<div class="article-badge left-badge text-color">
<i class="fas fa-chevron-left"></i> 上一篇</div>
<div class="card">
<a href="/xXxLock40.html">
<div class="card-image">
<img src="/medias/featureimages/20.jpg" class="responsive-img" alt="xXx时间屏保 V4.0">
<span class="card-title">xXx时间屏保 V4.0</span>
</div>
</a>
<div class="card-content article-content">
<div class="summary block-with-text">
一款超酷炫、超实用、密码会变化的锁屏软件
</div>
<div class="publish-info">
<span class="publish-date">
<i class="far fa-clock fa-fw icon-date"></i>2024-09-12
</span>
<span class="publish-author">
<i class="fas fa-bookmark fa-fw icon-category"></i>
<a href="/categories/%E5%8E%9F%E5%88%9B%E8%BD%AF%E4%BB%B6/" class="post-category">
原创软件
</a>
</span>
</div>
</div>
<div class="card-action article-tags">
<a href="/tags/xXx%E8%BD%AF%E4%BB%B6/">
<span class="chip bg-color">xXx软件</span>
</a>
<a href="/tags/xXx%E6%97%B6%E9%97%B4%E5%B1%8F%E4%BF%9D/">
<span class="chip bg-color">xXx时间屏保</span>
</a>
</div>
</div>
</div>
<div class="article col s12 m6" data-aos="fade-up">
<div class="article-badge right-badge text-color">
下一篇 <i class="fas fa-chevron-right"></i>
</div>
<div class="card">
<a href="/xXxLock39.html">
<div class="card-image">
<img src="/medias/featureimages/4.jpg" class="responsive-img" alt="xXx时间屏保 V3.9">
<span class="card-title">xXx时间屏保 V3.9</span>
</div>
</a>
<div class="card-content article-content">
<div class="summary block-with-text">
一款超酷炫、超实用、密码会变化的锁屏软件
</div>
<div class="publish-info">
<span class="publish-date">
<i class="far fa-clock fa-fw icon-date"></i>2023-09-10
</span>
<span class="publish-author">
<i class="fas fa-bookmark fa-fw icon-category"></i>
<a href="/categories/%E5%8E%9F%E5%88%9B%E8%BD%AF%E4%BB%B6/" class="post-category">
原创软件
</a>
</span>
</div>
</div>
<div class="card-action article-tags">
<a href="/tags/xXx%E8%BD%AF%E4%BB%B6/">
<span class="chip bg-color">xXx软件</span>
</a>
<a href="/tags/xXx%E6%97%B6%E9%97%B4%E5%B1%8F%E4%BF%9D/">
<span class="chip bg-color">xXx时间屏保</span>
</a>
</div>
</div>
</div>
</div>
</article>
</div>
<script>
$('#articleContent').on('copy', function (e) {
// IE8 or earlier browser is 'undefined'
if (typeof window.getSelection === 'undefined') return;
var selection = window.getSelection();
// if the selection is short let's not annoy our users.
if (('' + selection).length < Number.parseInt('66')) {
return;
}
// create a div outside of the visible area and fill it with the selected text.
var bodyElement = document.getElementsByTagName('body')[0];
var newdiv = document.createElement('div');
newdiv.style.position = 'absolute';
newdiv.style.left = '-99999px';
bodyElement.appendChild(newdiv);
newdiv.appendChild(selection.getRangeAt(0).cloneContents());
// we need a <pre> tag workaround.
// otherwise the text inside "pre" loses all the line breaks!
if (selection.getRangeAt(0).commonAncestorContainer.nodeName === 'PRE') {
newdiv.innerHTML = "<pre>" + newdiv.innerHTML + "</pre>";
}
var url = document.location.href;
newdiv.innerHTML += '<br />'
+ '来源: xXx软件<br />'
+ '文章作者: 龙家二少<br />'
+ '文章链接: <a href="' + url + '">' + url + '</a><br />'
+ '本文章著作权归作者所有,任何形式的转载都请注明出处。';
selection.selectAllChildren(newdiv);
window.setTimeout(function () {bodyElement.removeChild(newdiv);}, 200);
});
</script>
<!-- 代码块功能依赖 -->
<script type="text/javascript" src="/libs/codeBlock/codeBlockFuction.js"></script>
<!-- 代码语言 -->
<script type="text/javascript" src="/libs/codeBlock/codeLang.js"></script>
<!-- 代码块复制 -->
<script type="text/javascript" src="/libs/codeBlock/codeCopy.js"></script>
<!-- 代码块收缩 -->
<script type="text/javascript" src="/libs/codeBlock/codeShrink.js"></script>
<!-- 代码块折行 -->
<style type="text/css">
code[class*="language-"], pre[class*="language-"] { white-space: pre !important; }
</style>
</div>
<div id="toc-aside" class="expanded col l3 hide-on-med-and-down">
<div class="toc-widget">