-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxXxLock37.html
1140 lines (805 loc) · 38.7 KB
/
xXxLock37.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时间屏保 V3.7, 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时间屏保 V3.7 | 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/2.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时间屏保 V3.7</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>发布日期:
2019-05-04
</div>
<div class="info-break-policy">
<i class="far fa-file-word fa-fw"></i>文章字数:
829
</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>更新记录</h3><p><a target="_blank" rel="noopener" href="http://www.un69.cc/xxxlockhistory">xXx时间屏保更新记录</a></p>
<h3 id="软件简介"><a href="#软件简介" class="headerlink" title="软件简介"></a>软件简介</h3><ul>
<li><a target="_blank" rel="noopener" href="http://www.un69.cc/">龙家二少</a>编写的Windows屏保软件</li>
<li>一款会随着时间变化密码的纯绿色安全锁屏软件</li>
<li>酷炫的3D效果界面</li>
</ul>
<hr>
<ul>
<li>如果您要离开电脑而又不想别人使用,仲么办?</li>
<li>使用Windows+L键锁屏?</li>
<li>同事每用一次电脑就改一次密码?</li>
<li>使用xXx时间屏保吧,密码会变化,放心的告诉别人你的当前密码吧骚年!</li>
</ul>
<hr>
<h3 id="软件说明"><a href="#软件说明" class="headerlink" title="软件说明"></a>软件说明</h3><ul>
<li>由于使用了UPX对程序进行压缩,某些电脑上360可能会报毒,请加入白名单放心使用!</li>
</ul>
<h3 id="解锁说明"><a href="#解锁说明" class="headerlink" title="解锁说明"></a>解锁说明</h3><p>1、时间带有<code>~~**删除线**~~</code>:此时需要点击鼠标获取焦点,否则无法接受输入命令<br>2、时间是**<em>斜体**</em>:表示正在输入,可以按回车键确认命令,命令错误会自动清空以便重新输入</p>
<h3 id="软件截图"><a href="#软件截图" class="headerlink" title="软件截图"></a>软件截图</h3><p><img src="https://raw.githubusercontent.com/chineselzh/MyPhoto/master/MyWebsite/xXx%E6%97%B6%E9%97%B4%E5%B1%8F%E4%BF%9D3.7%E4%B8%BB%E7%95%8C%E9%9D%A2.png" alt="https://raw.githubusercontent.com/chineselzh/MyPhoto/master/MyWebsite/xXx%E6%97%B6%E9%97%B4%E5%B1%8F%E4%BF%9D3.7%E4%B8%BB%E7%95%8C%E9%9D%A2.png" title="xXx时间屏保 V3.7"></p>
<p>锁屏主界面 </p>
<p><img src="https://raw.githubusercontent.com/chineselzh/MyPhoto/master/MyWebsite/%E6%B5%AE%E5%8A%A8%E5%8A%A8%E7%94%BB%E4%B9%8B%E6%95%B0%E5%AD%97%E5%AD%97%E6%AF%8D.gif" alt="https://raw.githubusercontent.com/chineselzh/MyPhoto/master/MyWebsite/%E6%B5%AE%E5%8A%A8%E5%8A%A8%E7%94%BB%E4%B9%8B%E6%95%B0%E5%AD%97%E5%AD%97%E6%AF%8D.gif" title="xXx时间屏保 V3.7"></p>
<p>3.7新功能:浮动动画之随机字母数字</p>
<p><img src="https://raw.githubusercontent.com/chineselzh/MyPhoto/master/MyWebsite/%E6%B5%AE%E5%8A%A8%E5%8A%A8%E7%94%BB%E4%B9%8B%E9%9A%8F%E6%9C%BA%E6%B1%89%E5%AD%97.gif" alt="https://raw.githubusercontent.com/chineselzh/MyPhoto/master/MyWebsite/%E6%B5%AE%E5%8A%A8%E5%8A%A8%E7%94%BB%E4%B9%8B%E9%9A%8F%E6%9C%BA%E6%B1%89%E5%AD%97.gif" title="xXx时间屏保 V3.7"></p>
<p>3.7新功能:浮动动画之随机汉字</p>
<p><img src="https://raw.githubusercontent.com/chineselzh/MyPhoto/master/MyWebsite/%E6%B5%AE%E5%8A%A8%E5%8A%A8%E7%94%BB%E4%B9%8B%E8%87%AA%E5%AE%9A%E4%B9%89.gif" alt="https://raw.githubusercontent.com/chineselzh/MyPhoto/master/MyWebsite/%E6%B5%AE%E5%8A%A8%E5%8A%A8%E7%94%BB%E4%B9%8B%E8%87%AA%E5%AE%9A%E4%B9%89.gif" title="xXx时间屏保 V3.7"></p>
<p>3.7新功能:浮动动画之自定义文字</p>
<p><img src="https://raw.githubusercontent.com/chineselzh/MyPhoto/master/MyWebsite/xXx%E6%97%B6%E9%97%B4%E5%B1%8F%E4%BF%9D3.7%E5%B8%AE%E5%8A%A9.png" alt="https://raw.githubusercontent.com/chineselzh/MyPhoto/master/MyWebsite/xXx%E6%97%B6%E9%97%B4%E5%B1%8F%E4%BF%9D3.7%E5%B8%AE%E5%8A%A9.png" title="xXx时间屏保 V3.7"></p>
<p>3.7帮助</p>
<p><img src="https://raw.githubusercontent.com/chineselzh/MyPhoto/master/MyWebsite/xXx%E6%97%B6%E9%97%B4%E5%B1%8F%E4%BF%9D3.7%E5%9F%BA%E7%A1%80%E8%AE%BE%E7%BD%AE.png" alt="https://raw.githubusercontent.com/chineselzh/MyPhoto/master/MyWebsite/xXx%E6%97%B6%E9%97%B4%E5%B1%8F%E4%BF%9D3.7%E5%9F%BA%E7%A1%80%E8%AE%BE%E7%BD%AE.png" title="xXx时间屏保 V3.7"></p>
<p>3.7基础设置</p>
<p><img src="https://raw.githubusercontent.com/chineselzh/MyPhoto/master/MyWebsite/xXx%E6%97%B6%E9%97%B4%E5%B1%8F%E4%BF%9D3.7%E9%AB%98%E7%BA%A7%E8%AE%BE%E7%BD%AE.png" alt="https://raw.githubusercontent.com/chineselzh/MyPhoto/master/MyWebsite/xXx%E6%97%B6%E9%97%B4%E5%B1%8F%E4%BF%9D3.7%E9%AB%98%E7%BA%A7%E8%AE%BE%E7%BD%AE.png" title="xXx时间屏保 V3.7"></p>
<p>3.7高级设置</p>
<h3 id="下载地址"><a href="#下载地址" class="headerlink" title="下载地址"></a>下载地址</h3><ul>
<li><a target="_blank" rel="noopener" href="https://eyun.baidu.com/s/3i6LME49">百度企业网盘</a>密码:g8sg</li>
<li><a target="_blank" rel="noopener" href="https://share.weiyun.com/5RvcWZz">微云</a></li>
</ul>
<h3 id="注意:"><a href="#注意:" class="headerlink" title="注意:"></a>注意:</h3><ul>
<li>本软件需要.net4.0支持,<a target="_blank" rel="noopener" href="http://www.microsoft.com/zh-cn/download/details.aspx?id=17718">win7及XP系统点我跳转到微软官方下载</a></li>
<li>精简版系统可能也需要先安装.net4</li>
</ul>
<h3 id="常见问题"><a href="#常见问题" class="headerlink" title="常见问题"></a>常见问题</h3><h4 id="问:为什么360等安全软件会报毒"><a href="#问:为什么360等安全软件会报毒" class="headerlink" title="问:为什么360等安全软件会报毒"></a>问:为什么360等安全软件会报毒</h4><ul>
<li>因为软件会屏蔽Alt+F4、WIN键、防止任务管理器的打开、接收键盘输入(仅本程序内接收命令和密码)等敏感操作,故而会被360等安全软件报毒。如果不放心可以在腾讯哈勃分析系统试试,保证无毒!</li>
</ul>
<h4 id="问:软件无法使用"><a href="#问:软件无法使用" class="headerlink" title="问:软件无法使用"></a>问:软件无法使用</h4><ul>
<li>本软件需要.NET Framework4.0支持,win7及XP系统请自行百度</li>
<li>精简版win8及以上系统可能也需要先安装.NET Framework4.0</li>
</ul>
<h4 id="问:设置随系统启动失败"><a href="#问:设置随系统启动失败" class="headerlink" title="问:设置随系统启动失败"></a>问:设置随系统启动失败</h4><ul>
<li>这个是因为软件要向系统启动目录(位于C盘)写入快捷方式,然后您的电脑上的XX卫士或者XX管家不允许造成的!</li>
<li>可以手动设置快捷方式到启动目录或者关闭XX卫士、XX管家后再设置,设置完成后就可以打开这些个卫士管家了</li>
</ul>
<h4 id="问:如何只查看壁纸不看桌面图标"><a href="#问:如何只查看壁纸不看桌面图标" class="headerlink" title="问:如何只查看壁纸不看桌面图标"></a>问:如何只查看壁纸不看桌面图标</h4><ul>
<li>在基础设置里勾选【隐藏桌面图标】和【最小化所有窗口】</li>
</ul>
<h4 id="问:可以以幻灯片的形式播放文件夹下的图片吗?"><a href="#问:可以以幻灯片的形式播放文件夹下的图片吗?" class="headerlink" title="问:可以以幻灯片的形式播放文件夹下的图片吗?"></a>问:可以以幻灯片的形式播放文件夹下的图片吗?</h4><ul>
<li>可以,在高级设置里设置背景图片及透明度即可</li>
</ul>
<h4 id="问:不想看到帮助及锁屏文字怎么办?"><a href="#问:不想看到帮助及锁屏文字怎么办?" class="headerlink" title="问:不想看到帮助及锁屏文字怎么办?"></a>问:不想看到帮助及锁屏文字怎么办?</h4><ul>
<li>在基础设置里勾选【是否隐藏帮助】及【是否隐藏时间与锁屏文字】即可。隐藏后按Esc键短时显示时间及文字</li>
</ul>
<h4 id="问:什么时候能作为屏保使用而无需手动启动?"><a href="#问:什么时候能作为屏保使用而无需手动启动?" class="headerlink" title="问:什么时候能作为屏保使用而无需手动启动?"></a>问:什么时候能作为屏保使用而无需手动启动?</h4><ul>
<li>预计下一个版本实现</li>
</ul>
<h4 id="问:为什么自定义浮动动画显示时是乱码?"><a href="#问:为什么自定义浮动动画显示时是乱码?" class="headerlink" title="问:为什么自定义浮动动画显示时是乱码?"></a>问:为什么自定义浮动动画显示时是乱码?</h4><ul>
<li>文字动画.txt文件需要是UTF-8编码才行(使用记事本打开【文字动画.txt】 –>另存为–>右下角编码里选择UTF-8–>保存)。</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/xXxLock37.html">http://www2.un69.cc/xXxLock37.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="/excel2sdb.html">
<div class="card-image">
<img src="/medias/featureimages/1.jpg" class="responsive-img" alt="利用Python将Excel文件转换为sqlite数据库文件">
<span class="card-title">利用Python将Excel文件转换为sqlite数据库文件</span>
</div>
</a>
<div class="card-content article-content">
<div class="summary block-with-text">
利用Python将Excel文件转换为sqlite数据库文件
</div>
<div class="publish-info">
<span class="publish-date">
<i class="far fa-clock fa-fw icon-date"></i>2020-01-05
</span>
<span class="publish-author">
<i class="fas fa-bookmark fa-fw icon-category"></i>
<a href="/categories/%E5%8E%9F%E5%88%9B%E6%95%99%E7%A8%8B/" class="post-category">
原创教程
</a>
</span>
</div>
</div>
<div class="card-action article-tags">
<a href="/tags/Python/">
<span class="chip bg-color">Python</span>
</a>
<a href="/tags/%E6%95%B0%E6%8D%AE%E5%BA%93/">
<span class="chip bg-color">数据库</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="/xXxExcel.html">
<div class="card-image">
<img src="/medias/featureimages/0.jpg" class="responsive-img" alt="xXx方块测试版">
<span class="card-title">xXx方块测试版</span>
</div>
</a>
<div class="card-content article-content">
<div class="summary block-with-text">
一款同时兼容Excel与WPS表格的高级办公插件
</div>
<div class="publish-info">
<span class="publish-date">
<i class="far fa-clock fa-fw icon-date"></i>2018-05-28
</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%96%B9%E5%9D%97/">
<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">
<div class="toc-title"><i class="far fa-list-alt"></i> 目录</div>
<div id="toc-content"></div>
</div>
</div>
</div>
<!-- TOC 悬浮按钮. -->
<div id="floating-toc-btn" class="hide-on-med-and-down">
<a class="btn-floating btn-large bg-color">
<i class="fas fa-list-ul"></i>
</a>
</div>
<script src="/libs/tocbot/tocbot.min.js"></script>
<script>
$(function () {
tocbot.init({
tocSelector: '#toc-content',
contentSelector: '#articleContent',
headingsOffset: -($(window).height() * 0.4 - 45),
collapseDepth: Number('0'),
headingSelector: 'h2, h3, h4'
});
// modify the toc link href to support Chinese.
let i = 0;
let tocHeading = 'toc-heading-';
$('#toc-content a').each(function () {
$(this).attr('href', '#' + tocHeading + (++i));
});
// modify the heading title id to support Chinese.
i = 0;
$('#articleContent').children('h2, h3, h4').each(function () {
$(this).attr('id', tocHeading + (++i));
});
// Set scroll toc fixed.
let tocHeight = parseInt($(window).height() * 0.4 - 64);
let $tocWidget = $('.toc-widget');
$(window).scroll(function () {
let scroll = $(window).scrollTop();
/* add post toc fixed. */
if (scroll > tocHeight) {
$tocWidget.addClass('toc-fixed');
} else {
$tocWidget.removeClass('toc-fixed');
}
});
/* 修复文章卡片 div 的宽度. */
let fixPostCardWidth = function (srcId, targetId) {
let srcDiv = $('#' + srcId);
if (srcDiv.length === 0) {
return;
}
let w = srcDiv.width();
if (w >= 450) {
w = w + 21;
} else if (w >= 350 && w < 450) {
w = w + 18;
} else if (w >= 300 && w < 350) {
w = w + 16;
} else {
w = w + 14;
}
$('#' + targetId).width(w);
};
// 切换TOC目录展开收缩的相关操作.
const expandedClass = 'expanded';
let $tocAside = $('#toc-aside');
let $mainContent = $('#main-content');
$('#floating-toc-btn .btn-floating').click(function () {
if ($tocAside.hasClass(expandedClass)) {
$tocAside.removeClass(expandedClass).hide();
$mainContent.removeClass('l9');
} else {
$tocAside.addClass(expandedClass).show();
$mainContent.addClass('l9');
}
fixPostCardWidth('artDetail', 'prenext-posts');
});
});
</script>
</main>
<footer class="page-footer bg-color">
<div class="container row center-align" style="margin-bottom: 0px !important;">
<div class="col s12 m8 l8 copy-right">
Copyright ©
<span id="year">2020# 年份</span>
<a href="/about" target="_blank">龙家二少</a>
| Powered by <a href="https://hexo.io/" target="_blank">Hexo</a>
| Theme <a href="https://github.com/blinkfox/hexo-theme-matery" target="_blank">Matery</a>