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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387<!DOCTYPE html>
<html lang="zh-CN,en,default">
<head hexo-theme='https://github.com/volantis-x/hexo-theme-volantis/#5.8.0'>
<meta name="generator" content="Hexo 6.3.0">
<meta name="Volantis" content="5.8.0">
<meta charset="utf-8">
<!-- SEO相关 -->
<meta name="robots" content="index,follow">
<link rel="canonical" href="https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf/"/>
<!-- 渲染优化 -->
<meta http-equiv='x-dns-prefetch-control' content='on' />
<link rel='dns-prefetch' href='https://unpkg.com'>
<link rel="preconnect" href="https://unpkg.com" crossorigin>
<meta name="renderer" content="webkit">
<meta name="force-rendering" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta http-equiv="Content-Security-Policy" content=" default-src 'self' https:; block-all-mixed-content; base-uri 'self' https:; form-action 'self' https:; worker-src 'self' https:; connect-src 'self' https: *; img-src 'self' data: https: *; media-src 'self' https: *; font-src 'self' data: https: *; frame-src 'self' https: *; manifest-src 'self' https: *; child-src https:; script-src 'self' https: 'unsafe-inline' *; style-src 'self' https: 'unsafe-inline' *; ">
<meta name="HandheldFriendly" content="True" >
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5">
<meta content="black-translucent" name="apple-mobile-web-app-status-bar-style">
<meta content="telephone=no" name="format-detection">
<!-- import head_begin begin -->
<!-- import head_begin end -->
<!-- Custom Files headBegin begin-->
<!-- Custom Files headBegin end-->
<!-- front-matter head_begin begin -->
<!-- front-matter head_begin end -->
<link rel="preload" href="/css/style.css" as="style">
<link rel="preload" href="https://unpkg.com/volantis-static@0.0.1654736714924/media/fonts/VarelaRound/VarelaRound-Regular.ttf" as="font" type="font/ttf" crossorigin="anonymous">
<link rel="preload" href="https://unpkg.com/volantis-static@0.0.1654736714924/media/fonts/UbuntuMono/UbuntuMono-Regular.ttf" as="font" type="font/ttf" crossorigin="anonymous">
<!-- feed -->
<!-- 页面元数据 -->
<title>xWTF Blog</title>
<meta name="keywords" content="">
<meta desc name="description" content="xWTF Blog - xWTF - xWTF Blog">
<meta property="og:type" content="website">
<meta property="og:title" content="xWTF Blog">
<meta property="og:url" content="https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf/index.html">
<meta property="og:site_name" content="xWTF Blog">
<meta property="og:locale" content="zh_CN">
<meta property="og:image" content="https://unpkg.com/volantis-static@0.0.1654736714924/media/org.volantis/blog/favicon/android-chrome-192x192.png">
<meta property="article:author" content="xWTF">
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="https://unpkg.com/volantis-static@0.0.1654736714924/media/org.volantis/blog/favicon/android-chrome-192x192.png">
<style>
/* 首屏样式 */
#safearea {
display: none;
}
:root {
--color-site-body: #f4f4f4;
--color-site-bg: #f4f4f4;
--color-site-inner: #fff;
--color-site-footer: #666;
--color-card: #fff;
--color-text: #444;
--color-block: #f6f6f6;
--color-inlinecode: #c74f00;
--color-codeblock: #fff7ea;
--color-h1: #3a3a3a;
--color-h2: #3a3a3a;
--color-h3: #333;
--color-h4: #444;
--color-h5: #555;
--color-h6: #666;
--color-p: #444;
--color-list: #666;
--color-list-hl: #30ad91;
--color-meta: #888;
--color-read-bkg: #e0d8c8;
--color-read-post: #f8f1e2;
--color-copyright-bkg: #f5f5f5;
}
* {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
outline: none;
margin: 0;
padding: 0;
}
*::-webkit-scrollbar {
height: 4px;
width: 4px;
}
*::-webkit-scrollbar-track-piece {
background: transparent;
}
*::-webkit-scrollbar-thumb {
background: #3dd9b6;
cursor: pointer;
border-radius: 2px;
-webkit-border-radius: 2px;
}
*::-webkit-scrollbar-thumb:hover {
background: #ff5722;
}
html {
color: var(--color-text);
width: 100%;
height: 100%;
font-family: UbuntuMono, "Varela Round", "PingFang SC", "Microsoft YaHei", Helvetica, Arial, Menlo, Monaco, monospace, sans-serif;
font-size: 16px;
}
html >::-webkit-scrollbar {
height: 4px;
width: 4px;
}
html >::-webkit-scrollbar-track-piece {
background: transparent;
}
html >::-webkit-scrollbar-thumb {
background: #54b5a0 linear-gradient(45deg, rgba(255,255,255,0.4) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.4) 75%, transparent 75%, transparent);
cursor: pointer;
border-radius: 2px;
-webkit-border-radius: 2px;
}
html >::-webkit-scrollbar-thumb:hover {
background: #54b5a0 linear-gradient(45deg, rgba(255,255,255,0.4) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.4) 75%, transparent 75%, transparent);
}
body {
background-color: var(--color-site-body);
text-rendering: optimizelegibility;
-webkit-tap-highlight-color: rgba(0,0,0,0);
line-height: 1.6;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
body.modal-active {
overflow: hidden;
}
@media screen and (max-width: 680px) {
body.modal-active {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
}
a {
color: #2092ec;
cursor: pointer;
text-decoration: none;
transition: all 0.28s ease;
-webkit-transition: all 0.28s ease;
-khtml-transition: all 0.28s ease;
-moz-transition: all 0.28s ease;
-o-transition: all 0.28s ease;
-ms-transition: all 0.28s ease;
}
a:hover {
color: #ff5722;
}
a:active,
a:hover {
outline: 0;
}
ul,
ol {
padding-left: 0;
}
ul li,
ol li {
list-style: none;
}
header {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: block;
}
img {
border: 0;
background: none;
max-width: 100%;
}
svg:not(:root) {
overflow: hidden;
}
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
height: 0;
border: 0;
border-radius: 1px;
-webkit-border-radius: 1px;
border-bottom: 1px solid rgba(68,68,68,0.1);
}
button,
input {
color: inherit;
font: inherit;
margin: 0;
}
button {
overflow: visible;
text-transform: none;
-webkit-appearance: button;
cursor: pointer;
}
@supports (backdrop-filter: blur(20px)) {
.blur {
background: rgba(255,255,255,0.9) !important;
backdrop-filter: saturate(200%) blur(20px);
}
}
.shadow {
box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
-webkit-box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
}
.shadow.floatable {
transition: all 0.28s ease;
-webkit-transition: all 0.28s ease;
-khtml-transition: all 0.28s ease;
-moz-transition: all 0.28s ease;
-o-transition: all 0.28s ease;
-ms-transition: all 0.28s ease;
}
.shadow.floatable:hover {
box-shadow: 0 2px 4px 0px rgba(0,0,0,0.1), 0 4px 8px 0px rgba(0,0,0,0.1), 0 8px 16px 0px rgba(0,0,0,0.1);
-webkit-box-shadow: 0 2px 4px 0px rgba(0,0,0,0.1), 0 4px 8px 0px rgba(0,0,0,0.1), 0 8px 16px 0px rgba(0,0,0,0.1);
}
#l_cover {
min-height: 64px;
}
.cover-wrapper {
top: 0;
left: 0;
max-width: 100%;
height: 100vh;
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: -ms-flexbox /* TWEENER - IE 10 */;
display: -webkit-flex /* NEW - Chrome */;
display: flex /* NEW, Spec - Opera 12.1, Firefox 20+ */;
display: flex;
flex-wrap: nowrap;
-webkit-flex-wrap: nowrap;
-khtml-flex-wrap: nowrap;
-moz-flex-wrap: nowrap;
-o-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
-webkit-box-direction: normal;
-moz-box-direction: normal;
-webkit-box-orient: vertical;
-moz-box-orient: vertical;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
align-items: center;
align-self: center;
align-content: center;
color: var(--color-site-inner);
padding: 0 16px;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
position: relative;
overflow: hidden;
margin-bottom: -100px;
}
.cover-wrapper .cover-bg {
position: absolute;
width: 100%;
height: 100%;
background-position: center;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
}
.cover-wrapper .cover-bg.lazyload:not(.loaded) {
opacity: 0;
-webkit-opacity: 0;
-moz-opacity: 0;
}
.cover-wrapper .cover-bg.lazyload.loaded {
animation-delay: 0s;
animation-duration: 0.5s;
animation-fill-mode: forwards;
animation-timing-function: ease-out;
animation-name: fadeIn;
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
-webkit-opacity: 0;
-moz-opacity: 0;
filter: blur(12px);
transform: scale(1.02);
-webkit-transform: scale(1.02);
-khtml-transform: scale(1.02);
-moz-transform: scale(1.02);
-o-transform: scale(1.02);
-ms-transform: scale(1.02);
}
100% {
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
-webkit-opacity: 0;
-moz-opacity: 0;
filter: blur(12px);
transform: scale(1.02);
-webkit-transform: scale(1.02);
-khtml-transform: scale(1.02);
-moz-transform: scale(1.02);
-o-transform: scale(1.02);
-ms-transform: scale(1.02);
}
100% {
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
-webkit-opacity: 0;
-moz-opacity: 0;
filter: blur(12px);
transform: scale(1.02);
-webkit-transform: scale(1.02);
-khtml-transform: scale(1.02);
-moz-transform: scale(1.02);
-o-transform: scale(1.02);
-ms-transform: scale(1.02);
}
100% {
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
-webkit-opacity: 0;
-moz-opacity: 0;
filter: blur(12px);
transform: scale(1.02);
-webkit-transform: scale(1.02);
-khtml-transform: scale(1.02);
-moz-transform: scale(1.02);
-o-transform: scale(1.02);
-ms-transform: scale(1.02);
}
100% {
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
}
.cover-wrapper .cover-body {
z-index: 1;
position: relative;
width: 100%;
height: 100%;
}
.cover-wrapper#full {
height: calc(100vh + 100px);
padding-bottom: 100px;
}
.cover-wrapper#half {
max-height: 640px;
min-height: 400px;
height: calc(36vh - 64px + 200px);
}
.cover-wrapper #scroll-down {
width: 100%;
height: 64px;
position: absolute;
bottom: 100px;
text-align: center;
cursor: pointer;
}
.cover-wrapper #scroll-down .scroll-down-effects {
color: #fff;
font-size: 24px;
line-height: 64px;
position: absolute;
width: 24px;
left: calc(50% - 12px);
text-shadow: 0 1px 2px rgba(0,0,0,0.1);
animation: scroll-down-effect 1.5s infinite;
-webkit-animation: scroll-down-effect 1.5s infinite;
-khtml-animation: scroll-down-effect 1.5s infinite;
-moz-animation: scroll-down-effect 1.5s infinite;
-o-animation: scroll-down-effect 1.5s infinite;
-ms-animation: scroll-down-effect 1.5s infinite;
}
@-moz-keyframes scroll-down-effect {
0% {
top: 0;
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
50% {
top: -16px;
opacity: 0.4;
-webkit-opacity: 0.4;
-moz-opacity: 0.4;
}
100% {
top: 0;
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
}
@-webkit-keyframes scroll-down-effect {
0% {
top: 0;
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
50% {
top: -16px;
opacity: 0.4;
-webkit-opacity: 0.4;
-moz-opacity: 0.4;
}
100% {
top: 0;
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
}
@-o-keyframes scroll-down-effect {
0% {
top: 0;
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
50% {
top: -16px;
opacity: 0.4;
-webkit-opacity: 0.4;
-moz-opacity: 0.4;
}
100% {
top: 0;
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
}
@keyframes scroll-down-effect {
0% {
top: 0;
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
50% {
top: -16px;
opacity: 0.4;
-webkit-opacity: 0.4;
-moz-opacity: 0.4;
}
100% {
top: 0;
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
}
.cover-wrapper .cover-body {
margin-top: 64px;
margin-bottom: 100px;
}
.cover-wrapper .cover-body,
.cover-wrapper .cover-body .top,
.cover-wrapper .cover-body .bottom {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: -ms-flexbox /* TWEENER - IE 10 */;
display: -webkit-flex /* NEW - Chrome */;
display: flex /* NEW, Spec - Opera 12.1, Firefox 20+ */;
display: flex;
-webkit-box-direction: normal;
-moz-box-direction: normal;
-webkit-box-orient: vertical;
-moz-box-orient: vertical;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
align-items: center;
justify-content: center;
-webkit-justify-content: center;
-khtml-justify-content: center;
-moz-justify-content: center;
-o-justify-content: center;
-ms-justify-content: center;
max-width: 100%;
}
.cover-wrapper .cover-body .bottom {
margin-top: 32px;
}
.cover-wrapper .cover-body .title {
font-family: "Varela Round", "PingFang SC", "Microsoft YaHei", Helvetica, Arial, Helvetica, monospace;
font-size: 3.125rem;
line-height: 1.2;
text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.cover-wrapper .cover-body .subtitle {
font-size: 20px;
}
.cover-wrapper .cover-body .logo {
max-height: 120px;
max-width: calc(100% - 4 * 16px);
}
@media screen and (min-height: 1024px) {
.cover-wrapper .cover-body .title {
font-size: 3rem;
}
.cover-wrapper .cover-body .subtitle {
font-size: 1.05rem;
}
.cover-wrapper .cover-body .logo {
max-height: 150px;
}
}
.cover-wrapper .cover-body .m_search {
position: relative;
max-width: calc(100% - 16px);
width: 320px;
vertical-align: middle;
}
.cover-wrapper .cover-body .m_search .form {
position: relative;
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: block;
width: 100%;
}
.cover-wrapper .cover-body .m_search .icon,
.cover-wrapper .cover-body .m_search .input {
transition: all 0.28s ease;
-webkit-transition: all 0.28s ease;
-khtml-transition: all 0.28s ease;
-moz-transition: all 0.28s ease;
-o-transition: all 0.28s ease;
-ms-transition: all 0.28s ease;
}
.cover-wrapper .cover-body .m_search .icon {
position: absolute;
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: block;
line-height: 2.5rem;
width: 32px;
top: 0;
left: 5px;
color: rgba(68,68,68,0.75);
}
.cover-wrapper .cover-body .m_search .input {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: block;
height: 2.5rem;
width: 100%;
box-shadow: none;
-webkit-box-shadow: none;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
font-size: 0.875rem;
-webkit-appearance: none;
padding-left: 36px;
border-radius: 1.4rem;
-webkit-border-radius: 1.4rem;
background: rgba(255,255,255,0.6);
backdrop-filter: blur(10px);
border: none;
color: var(--color-text);
}
@media screen and (max-width: 500px) {
.cover-wrapper .cover-body .m_search .input {
padding-left: 36px;
}
}
.cover-wrapper .cover-body .m_search .input:hover {
background: rgba(255,255,255,0.8);
}
.cover-wrapper .cover-body .m_search .input:focus {
background: #fff;
}
.cover-wrapper .list-h {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: -ms-flexbox /* TWEENER - IE 10 */;
display: -webkit-flex /* NEW - Chrome */;
display: flex /* NEW, Spec - Opera 12.1, Firefox 20+ */;
display: flex;
-webkit-box-direction: normal;
-moz-box-direction: normal;
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
flex-wrap: wrap;
-webkit-flex-wrap: wrap;
-khtml-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-o-flex-wrap: wrap;
-ms-flex-wrap: wrap;
align-items: stretch;
border-radius: 4px;
-webkit-border-radius: 4px;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.cover-wrapper .list-h a {
-webkit-box-flex: 1;
-moz-box-flex: 1;
-webkit-flex: 1 0;
-ms-flex: 1 0;
flex: 1 0;
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: -ms-flexbox /* TWEENER - IE 10 */;
display: -webkit-flex /* NEW - Chrome */;
display: flex /* NEW, Spec - Opera 12.1, Firefox 20+ */;
display: flex;
font-weight: 600;
}
.cover-wrapper .list-h a img {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: block;
border-radius: 2px;
-webkit-border-radius: 2px;
margin: 4px;
min-width: 40px;
max-width: 44px;
}
@media screen and (max-width: 768px) {
.cover-wrapper .list-h a img {
min-width: 36px;
max-width: 40px;
}
}
@media screen and (max-width: 500px) {
.cover-wrapper .list-h a img {
margin: 2px 4px;
min-width: 32px;
max-width: 36px;
}
}
@media screen and (max-width: 375px) {
.cover-wrapper .list-h a img {
min-width: 28px;
max-width: 32px;
}
}
.cover-wrapper {
max-width: 100%;
}
.cover-wrapper.search .bottom .menu {
margin-top: 16px;
}
.cover-wrapper.search .bottom .menu .list-h a {
white-space: nowrap;
-webkit-box-direction: normal;
-moz-box-direction: normal;
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
align-items: baseline;
padding: 2px;
margin: 4px;
color: var(--color-site-inner);
opacity: 0.75;
-webkit-opacity: 0.75;
-moz-opacity: 0.75;
text-shadow: 0 1px 2px rgba(0,0,0,0.05);
border-bottom: 2px solid transparent;
}
.cover-wrapper.search .bottom .menu .list-h a i {
margin-right: 4px;
}
.cover-wrapper.search .bottom .menu .list-h a p {
font-size: 0.9375rem;
}
.cover-wrapper.search .bottom .menu .list-h a:hover,
.cover-wrapper.search .bottom .menu .list-h a.active,
.cover-wrapper.search .bottom .menu .list-h a:active {
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
border-bottom: 2px solid var(--color-site-inner);
}
@font-face {
font-family: 'UbuntuMono';
src: url("https://unpkg.com/volantis-static@0.0.1654736714924/media/fonts/UbuntuMono/UbuntuMono-Regular.ttf");
font-weight: 'normal';
font-style: 'normal';
font-display: swap;
}
@font-face {
font-family: 'Varela Round';
src: url("https://unpkg.com/volantis-static@0.0.1654736714924/media/fonts/VarelaRound/VarelaRound-Regular.ttf");
font-weight: 'normal';
font-style: 'normal';
font-display: swap;
}
.l_header {
position: fixed;
z-index: 1000;
top: 0;
width: 100%;
height: 64px;
background: var(--color-card);
box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
-webkit-box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
}
.l_header.auto {
transition: opacity 0.4s ease;
-webkit-transition: opacity 0.4s ease;
-khtml-transition: opacity 0.4s ease;
-moz-transition: opacity 0.4s ease;
-o-transition: opacity 0.4s ease;
-ms-transition: opacity 0.4s ease;
visibility: hidden;
}
.l_header.auto.show {
opacity: 1 !important;
-webkit-opacity: 1 !important;
-moz-opacity: 1 !important;
visibility: visible;
}
.l_header .container {
margin-left: 16px;
margin-right: 16px;
}
.l_header #wrapper {
height: 100%;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.l_header #wrapper .nav-main,
.l_header #wrapper .nav-sub {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: -ms-flexbox /* TWEENER - IE 10 */;
display: -webkit-flex /* NEW - Chrome */;
display: flex /* NEW, Spec - Opera 12.1, Firefox 20+ */;
display: flex;
flex-wrap: nowrap;
-webkit-flex-wrap: nowrap;
-khtml-flex-wrap: nowrap;
-moz-flex-wrap: nowrap;
-o-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
justify-content: space-between;
-webkit-justify-content: space-between;
-khtml-justify-content: space-between;
-moz-justify-content: space-between;
-o-justify-content: space-between;
-ms-justify-content: space-between;
align-items: center;
}
.l_header #wrapper .nav-main {
transition: all 0.28s ease;
-webkit-transition: all 0.28s ease;
-khtml-transition: all 0.28s ease;
-moz-transition: all 0.28s ease;
-o-transition: all 0.28s ease;
-ms-transition: all 0.28s ease;
}
.l_header #wrapper.sub .nav-main {
transform: translateY(-64px);
-webkit-transform: translateY(-64px);
-khtml-transform: translateY(-64px);
-moz-transform: translateY(-64px);
-o-transform: translateY(-64px);
-ms-transform: translateY(-64px);
}
.l_header #wrapper .nav-sub {
transition: all 0.28s ease;
-webkit-transition: all 0.28s ease;
-khtml-transition: all 0.28s ease;
-moz-transition: all 0.28s ease;
-o-transition: all 0.28s ease;
-ms-transition: all 0.28s ease;
opacity: 0;
-webkit-opacity: 0;
-moz-opacity: 0;
height: 64px;
width: calc(100% - 2 * 16px);
position: absolute;
}
.l_header #wrapper .nav-sub ::-webkit-scrollbar {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: none;
}
@media screen and (min-width: 2048px) {
.l_header #wrapper .nav-sub {
max-width: 55vw;
margin: auto;
}
}
.l_header #wrapper.sub .nav-sub {
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
.l_header #wrapper .title {
position: relative;
color: var(--color-text);
padding-left: 24px;
max-height: 64px;
}
.l_header #wrapper .nav-main .title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
flex-shrink: 0;
line-height: 64px;
padding: 0 24px;
font-size: 1.25rem;
font-family: "Varela Round", "PingFang SC", "Microsoft YaHei", Helvetica, Arial, Helvetica, monospace;
}
.l_header #wrapper .nav-main .title img {
height: 64px;
}
.l_header .nav-sub {
max-width: 1080px;
margin: auto;
}
.l_header .nav-sub .title {
font-weight: bold;
font-family: UbuntuMono, "Varela Round", "PingFang SC", "Microsoft YaHei", Helvetica, Arial, Menlo, Monaco, monospace, sans-serif;
line-height: 1.2;
max-height: 64px;
white-space: normal;
flex-shrink: 1;
}
.l_header .switcher {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: none;
line-height: 64px;
align-items: center;
}
.l_header .switcher .s-toc {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: none;
}
@media screen and (max-width: 768px) {
.l_header .switcher .s-toc {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: -ms-flexbox /* TWEENER - IE 10 */;
display: -webkit-flex /* NEW - Chrome */;
display: flex /* NEW, Spec - Opera 12.1, Firefox 20+ */;
display: flex;
}
}
.l_header .switcher >li {
height: 48px;
transition: all 0.28s ease;
-webkit-transition: all 0.28s ease;
-khtml-transition: all 0.28s ease;
-moz-transition: all 0.28s ease;
-o-transition: all 0.28s ease;
-ms-transition: all 0.28s ease;
margin: 2px;
}
@media screen and (max-width: 500px) {
.l_header .switcher >li {
margin: 0 1px;
height: 48px;
}
}
.l_header .switcher >li >a {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: -ms-flexbox /* TWEENER - IE 10 */;
display: -webkit-flex /* NEW - Chrome */;
display: flex /* NEW, Spec - Opera 12.1, Firefox 20+ */;
display: flex;
justify-content: center;
-webkit-justify-content: center;
-khtml-justify-content: center;
-moz-justify-content: center;
-o-justify-content: center;
-ms-justify-content: center;
align-items: center;
width: 48px;
height: 48px;
padding: 0.85em 1.1em;
border-radius: 100px;
-webkit-border-radius: 100px;
border: none;
transition: all 0.28s ease;
-webkit-transition: all 0.28s ease;
-khtml-transition: all 0.28s ease;
-moz-transition: all 0.28s ease;
-o-transition: all 0.28s ease;
-ms-transition: all 0.28s ease;
color: #3dd9b6;
}
.l_header .switcher >li >a:hover {
border: none;
}
.l_header .switcher >li >a.active,
.l_header .switcher >li >a:active {
border: none;
background: var(--color-site-bg);
}
@media screen and (max-width: 500px) {
.l_header .switcher >li >a {
width: 36px;
height: 48px;
}
}
.l_header .nav-sub .switcher {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: -ms-flexbox /* TWEENER - IE 10 */;
display: -webkit-flex /* NEW - Chrome */;
display: flex /* NEW, Spec - Opera 12.1, Firefox 20+ */;
display: flex;
}
.l_header .m_search {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: -ms-flexbox /* TWEENER - IE 10 */;
display: -webkit-flex /* NEW - Chrome */;
display: flex /* NEW, Spec - Opera 12.1, Firefox 20+ */;
display: flex;
height: 64px;
width: 240px;
transition: all 0.28s ease;
-webkit-transition: all 0.28s ease;
-khtml-transition: all 0.28s ease;
-moz-transition: all 0.28s ease;
-o-transition: all 0.28s ease;
-ms-transition: all 0.28s ease;
}
@media screen and (max-width: 1024px) {
.l_header .m_search {
width: 44px;
min-width: 44px;
}
.l_header .m_search input::placeholder {
opacity: 0;
-webkit-opacity: 0;
-moz-opacity: 0;
}
.l_header .m_search:hover {
width: 240px;
}
.l_header .m_search:hover input::placeholder {
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
}
@media screen and (min-width: 500px) {
.l_header .m_search:hover .input {
width: 100%;
}
.l_header .m_search:hover .input::placeholder {
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
}
@media screen and (max-width: 500px) {
.l_header .m_search {
min-width: 0;
}
.l_header .m_search input::placeholder {
opacity: 1;
-webkit-opacity: 1;
-moz-opacity: 1;
}
}
.l_header .m_search .form {
position: relative;
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: -ms-flexbox /* TWEENER - IE 10 */;
display: -webkit-flex /* NEW - Chrome */;
display: flex /* NEW, Spec - Opera 12.1, Firefox 20+ */;
display: flex;
width: 100%;
align-items: center;
}
.l_header .m_search .icon {
position: absolute;
width: 36px;
left: 5px;
color: var(--color-meta);
}
@media screen and (max-width: 500px) {
.l_header .m_search .icon {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: none;
}
}
.l_header .m_search .input {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: block;
padding-top: 8px;
padding-bottom: 8px;
line-height: 1.3;
width: 100%;
color: var(--color-text);
background: #fafafa;
box-shadow: none;
-webkit-box-shadow: none;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
padding-left: 40px;
font-size: 0.875rem;
border-radius: 8px;
-webkit-border-radius: 8px;
border: none;
transition: all 0.28s ease;
-webkit-transition: all 0.28s ease;
-khtml-transition: all 0.28s ease;
-moz-transition: all 0.28s ease;
-o-transition: all 0.28s ease;
-ms-transition: all 0.28s ease;
}
@media screen and (min-width: 500px) {
.l_header .m_search .input:focus {
box-shadow: 0 4px 8px 0px rgba(0,0,0,0.1);
-webkit-box-shadow: 0 4px 8px 0px rgba(0,0,0,0.1);
}
}
@media screen and (max-width: 500px) {
.l_header .m_search .input {
background: var(--color-block);
padding-left: 8px;
border: none;
}
.l_header .m_search .input:hover,
.l_header .m_search .input:focus {
border: none;
}
}
@media (max-width: 500px) {
.l_header .m_search {
left: 0;
width: 0;
overflow: hidden;
position: absolute;
background: #fff;
transition: all 0.28s ease;
-webkit-transition: all 0.28s ease;
-khtml-transition: all 0.28s ease;
-moz-transition: all 0.28s ease;
-o-transition: all 0.28s ease;
-ms-transition: all 0.28s ease;
}
.l_header .m_search .input {
border-radius: 32px;
-webkit-border-radius: 32px;
margin-left: 16px;
padding-left: 16px;
}
.l_header.z_search-open .m_search {
width: 100%;
}
.l_header.z_search-open .m_search .input {
width: calc(100% - 120px);
}
}
ul.m-pc >li>a {
color: inherit;
border-bottom: 2px solid transparent;
}
ul.m-pc >li>a:active,
ul.m-pc >li>a.active {
border-bottom: 2px solid #3dd9b6;
}
ul.m-pc li:hover >ul.list-v,
ul.list-v li:hover >ul.list-v {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: block;
}
ul.nav-list-h {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: -ms-flexbox /* TWEENER - IE 10 */;
display: -webkit-flex /* NEW - Chrome */;
display: flex /* NEW, Spec - Opera 12.1, Firefox 20+ */;
display: flex;
align-items: stretch;
}
ul.nav-list-h>li {
position: relative;
justify-content: center;
-webkit-justify-content: center;
-khtml-justify-content: center;
-moz-justify-content: center;
-o-justify-content: center;
-ms-justify-content: center;
height: 100%;
line-height: 2.4;
border-radius: 4px;
-webkit-border-radius: 4px;
}
ul.nav-list-h>li >a {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-weight: 600;
}
ul.list-v {
z-index: 1;
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: none;
position: absolute;
background: var(--color-card);
box-shadow: 0 2px 4px 0px rgba(0,0,0,0.08), 0 4px 8px 0px rgba(0,0,0,0.08), 0 8px 16px 0px rgba(0,0,0,0.08);
-webkit-box-shadow: 0 2px 4px 0px rgba(0,0,0,0.08), 0 4px 8px 0px rgba(0,0,0,0.08), 0 8px 16px 0px rgba(0,0,0,0.08);
margin-top: -3px;
border-radius: 1px;
-webkit-border-radius: 1px;
padding: 8px 0;
}
ul.list-v.show {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: block;
}
ul.list-v hr {
margin-top: 8px;
margin-bottom: 8px;
}
ul.list-v >li {
white-space: nowrap;
word-break: keep-all;
}
ul.list-v >li.header {
font-size: 0.78125rem;
font-weight: bold;
line-height: 2em;
color: var(--color-meta);
margin: 8px 16px 4px;
}
ul.list-v >li.header i {
margin-right: 8px;
}
ul.list-v >li ul {
margin-left: 0;
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: none;
margin-top: -40px;
}
ul.list-v .aplayer-container {
min-height: 64px;
padding: 6px 16px;
}
ul.list-v >li>a {
transition: all 0.28s ease;
-webkit-transition: all 0.28s ease;
-khtml-transition: all 0.28s ease;
-moz-transition: all 0.28s ease;
-o-transition: all 0.28s ease;
-ms-transition: all 0.28s ease;
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: block;
color: var(--color-list);
font-size: 0.875rem;
font-weight: bold;
line-height: 36px;
padding: 0 20px 0 16px;
text-overflow: ellipsis;
margin: 0 4px;
border-radius: 4px;
-webkit-border-radius: 4px;
}
@media screen and (max-width: 1024px) {
ul.list-v >li>a {
line-height: 40px;
}
}
ul.list-v >li>a >i {
margin-right: 8px;
}
ul.list-v >li>a:active,
ul.list-v >li>a.active {
color: var(--color-list-hl);
}
ul.list-v >li>a:hover {
color: var(--color-list-hl);
background: var(--color-site-bg);
}
.l_header .menu >ul>li>a {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: block;
padding: 0 8px;
}
.l_header .menu >ul>li>a >i {
margin-right: 4px;
}
.l_header ul.nav-list-h>li {
color: var(--color-list);
line-height: 64px;
}
.l_header ul.nav-list-h>li >a {
max-height: 64px;
overflow: hidden;
color: inherit;
}
.l_header ul.nav-list-h>li >a:active,
.l_header ul.nav-list-h>li >a.active {
color: #3dd9b6;
}
.l_header ul.nav-list-h>li:hover>a {
color: var(--color-list-hl);
}
.l_header ul.nav-list-h>li i.music {
animation: rotate-effect 1.5s linear infinite;
-webkit-animation: rotate-effect 1.5s linear infinite;
-khtml-animation: rotate-effect 1.5s linear infinite;
-moz-animation: rotate-effect 1.5s linear infinite;
-o-animation: rotate-effect 1.5s linear infinite;
-ms-animation: rotate-effect 1.5s linear infinite;
}
@-moz-keyframes rotate-effect {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
-khtml-transform: rotate(0);
-moz-transform: rotate(0);
-o-transform: rotate(0);
-ms-transform: rotate(0);
}
25% {
transform: rotate(90deg);
-webkit-transform: rotate(90deg);
-khtml-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-o-transform: rotate(90deg);
-ms-transform: rotate(90deg);
}
50% {
transform: rotate(180deg);
-webkit-transform: rotate(180deg);
-khtml-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
}
75% {
transform: rotate(270deg);
-webkit-transform: rotate(270deg);
-khtml-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-o-transform: rotate(270deg);
-ms-transform: rotate(270deg);
}
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-khtml-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
}
}
@-webkit-keyframes rotate-effect {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
-khtml-transform: rotate(0);
-moz-transform: rotate(0);
-o-transform: rotate(0);
-ms-transform: rotate(0);
}
25% {
transform: rotate(90deg);
-webkit-transform: rotate(90deg);
-khtml-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-o-transform: rotate(90deg);
-ms-transform: rotate(90deg);
}
50% {
transform: rotate(180deg);
-webkit-transform: rotate(180deg);
-khtml-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
}
75% {
transform: rotate(270deg);
-webkit-transform: rotate(270deg);
-khtml-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-o-transform: rotate(270deg);
-ms-transform: rotate(270deg);
}
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-khtml-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
}
}
@-o-keyframes rotate-effect {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
-khtml-transform: rotate(0);
-moz-transform: rotate(0);
-o-transform: rotate(0);
-ms-transform: rotate(0);
}
25% {
transform: rotate(90deg);
-webkit-transform: rotate(90deg);
-khtml-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-o-transform: rotate(90deg);
-ms-transform: rotate(90deg);
}
50% {
transform: rotate(180deg);
-webkit-transform: rotate(180deg);
-khtml-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
}
75% {
transform: rotate(270deg);
-webkit-transform: rotate(270deg);
-khtml-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-o-transform: rotate(270deg);
-ms-transform: rotate(270deg);
}
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-khtml-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
}
}
@keyframes rotate-effect {
0% {
transform: rotate(0);
-webkit-transform: rotate(0);
-khtml-transform: rotate(0);
-moz-transform: rotate(0);
-o-transform: rotate(0);
-ms-transform: rotate(0);
}
25% {
transform: rotate(90deg);
-webkit-transform: rotate(90deg);
-khtml-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-o-transform: rotate(90deg);
-ms-transform: rotate(90deg);
}
50% {
transform: rotate(180deg);
-webkit-transform: rotate(180deg);
-khtml-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
}
75% {
transform: rotate(270deg);
-webkit-transform: rotate(270deg);
-khtml-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-o-transform: rotate(270deg);
-ms-transform: rotate(270deg);
}
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-khtml-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
}
}
.menu-phone li ul.list-v {
right: calc(100% - 0.5 * 16px);
}
.menu-phone li ul.list-v ul {
right: calc(100% - 0.5 * 16px);
}
#wrapper {
max-width: 1080px;
margin: auto;
}
@media screen and (min-width: 2048px) {
#wrapper {
max-width: 55vw;
}
}
#wrapper .menu {
-webkit-box-flex: 1;
-moz-box-flex: 1;
-webkit-flex: 1 1;
-ms-flex: 1 1;
flex: 1 1;
margin: 0 16px 0 0;
}
#wrapper .menu .list-v ul {
left: calc(100% - 0.5 * 16px);
}
.menu-phone {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: none;
margin-top: 16px;
right: 8px;
transition: all 0.28s ease;
-webkit-transition: all 0.28s ease;
-khtml-transition: all 0.28s ease;
-moz-transition: all 0.28s ease;
-o-transition: all 0.28s ease;
-ms-transition: all 0.28s ease;
}
.menu-phone ul {
right: calc(100% - 0.5 * 16px);
}
@media screen and (max-width: 500px) {
.menu-phone {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: block;
}
}
.l_header {
max-width: 65vw;
left: calc((100% - 65vw) * 0.5);
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
@media screen and (max-width: 2048px) {
.l_header {
max-width: 1112px;
left: calc((100% - 1112px) * 0.5);
}
}
@media screen and (max-width: 1112px) {
.l_header {
left: 0;
border-radius: 0;
-webkit-border-radius: 0;
max-width: 100%;
}
}
@media screen and (max-width: 500px) {
.l_header .container {
margin-left: 0;
margin-right: 0;
}
.l_header #wrapper .nav-main .title {
padding-left: 16px;
padding-right: 16px;
}
.l_header #wrapper .nav-sub {
width: 100%;
}
.l_header #wrapper .nav-sub .title {
overflow-y: scroll;
margin-top: 2px;
padding: 8px 16px;
}
.l_header #wrapper .switcher {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: -ms-flexbox /* TWEENER - IE 10 */;
display: -webkit-flex /* NEW - Chrome */;
display: flex /* NEW, Spec - Opera 12.1, Firefox 20+ */;
display: flex;
margin-right: 8px;
}
.l_header .menu {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: none;
}
}
@media screen and (max-width: 500px) {
.list-v li {
max-width: 270px;
}
}
#u-search {
display: -webkit-box /* OLD - iOS 6-, Safari 3.1-6 */;
display: -moz-box /* OLD - Firefox 19- (buggy but mostly works) */;
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: 60px 20px;
z-index: 1001;
}
@media screen and (max-width: 680px) {
#u-search {
padding: 0px;
}
}
</style>
<link rel="stylesheet" href="/css/style.css" media="print" onload="this.media='all';this.onload=null">
<noscript><link rel="stylesheet" href="/css/style.css"></noscript>
<script>
if (/*@cc_on!@*/false || (!!window.MSInputMethodContext && !!document.documentMode))
document.write(
'<style>'+
'html{'+
'overflow-x: hidden !important;'+
'overflow-y: hidden !important;'+
'}'+
'.kill-ie{'+
'text-align:center;'+
'height: 100%;'+
'margin-top: 15%;'+
'margin-bottom: 5500%;'+
'}'+
'.kill-t{'+
'font-size: 2rem;'+
'}'+
'.kill-c{'+
'font-size: 1.2rem;'+
'}'+
'#l_header,#l_body{'+
'display: none;'+
'}'+
'</style>'+
'<div class="kill-ie">'+
`<span class="kill-t"><b>抱歉,您的浏览器无法访问本站</b></span><br/>`+
`<span class="kill-c">微软已经于2016年终止了对 Internet Explorer (IE) 10 及更早版本的支持,<br/>继续使用存在极大的安全隐患,请使用当代主流的浏览器进行访问。</span><br/>`+
`<a target="_blank" rel="noopener" href="https://blogs.windows.com/windowsexperience/2021/05/19/the-future-of-internet-explorer-on-windows-10-is-in-microsoft-edge/"><strong>了解详情 ></strong></a>`+
'</div>');
</script>
<noscript>
<style>
html{
overflow-x: hidden !important;
overflow-y: hidden !important;
}
.kill-noscript{
text-align:center;
height: 100%;
margin-top: 15%;
margin-bottom: 5500%;
}
.kill-t{
font-size: 2rem;
}
.kill-c{
font-size: 1.2rem;
}
#l_header,#l_body{
display: none;
}
</style>
<div class="kill-noscript">
<span class="kill-t"><b>抱歉,您的浏览器无法访问本站</b></span><br/>
<span class="kill-c">本页面需要浏览器支持(启用)JavaScript</span><br/>
<a target="_blank" rel="noopener" href="https://www.baidu.com/s?wd=启用JavaScript"><strong>了解详情 ></strong></a>
</div>
</noscript>
<script>
/************这个文件存放不需要重载的全局变量和全局函数*********/
window.volantis = {}; // volantis 全局变量
volantis.debug = "env"; // 调试模式
volantis.dom = {}; // 页面Dom see: /source/js/app.js etc.
volantis.GLOBAL_CONFIG ={
debug: "env",
cdn: {"js":{"app":"/js/app.js","parallax":"/js/plugins/parallax.js","rightMenu":"/js/plugins/rightMenu.js","rightMenus":"/js/plugins/rightMenus.js","sites":"/js/plugins/tags/sites.js","friends":"/js/plugins/tags/friends.js","contributors":"/js/plugins/tags/contributors.js","search":"/js/search/hexo.js"},"css":{"style":"/css/style.css"}},
default: {"avatar":"https://unpkg.com/volantis-static@0.0.1654736714924/media/placeholder/avatar/round/3442075.svg","link":"https://unpkg.com/volantis-static@0.0.1654736714924/media/placeholder/link/8f277b4ee0ecd.svg","cover":"https://unpkg.com/volantis-static@0.0.1654736714924/media/placeholder/cover/76b86c0226ffd.svg","image":"https://unpkg.com/volantis-static@0.0.1654736714924/media/placeholder/image/2659360.svg"},
lastupdate: new Date(1733160123320),
sidebar: {
for_page: ["blogger","category","tagcloud"],
for_post: ["toc"],
webinfo: {
lastupd: {
enable: true,
friendlyShow: true
},
runtime: {
data: "2020/01/01",
unit: "天"
}
}
},
plugins: {
message: {"enable":true,"css":"https://unpkg.com/volantis-static@0.0.1654736714924/libs/izitoast/dist/css/iziToast.min.css","js":"https://unpkg.com/volantis-static@0.0.1654736714924/libs/izitoast/dist/js/iziToast.min.js","icon":{"default":"fa-solid fa-info-circle light-blue","quection":"fa-solid fa-question-circle light-blue"},"time":{"default":5000,"quection":20000},"position":"topRight","transitionIn":"bounceInLeft","transitionOut":"fadeOutRight","titleColor":"var(--color-text)","messageColor":"var(--color-text)","backgroundColor":"var(--color-card)","zindex":2147483647,"copyright":{"enable":true,"title":"知识共享许可协议","message":"请遵守 CC BY-NC-SA 4.0 协议。","icon":"far fa-copyright light-blue"},"aplayer":{"enable":true,"play":"fa-solid fa-play","pause":"fa-solid fa-pause"},"rightmenu":{"enable":true,"notice":true}},
fancybox: {"css":"https://unpkg.com/volantis-static@0.0.1654736714924/libs/@fancyapps/ui/dist/fancybox.css","js":"https://unpkg.com/volantis-static@0.0.1654736714924/libs/@fancyapps/ui/dist/fancybox.umd.js"},
rightmenu: {
faicon: "fa",
layout: ["home","darkmode"],
music_alwaysShow: true,
customPicUrl: {"enable":false,"old":null,"new":null}
},
}
}
/******************** volantis.EventListener ********************************/
// 事件监听器 see: /source/js/app.js
volantis.EventListener = {}
// 这里存放pjax切换页面时将被移除的事件监听器
volantis.EventListener.list = []
//构造方法
function volantisEventListener(type, f, ele) {
this.type = type
this.f = f
this.ele = ele
}
// 移除事件监听器
volantis.EventListener.remove = () => {
volantis.EventListener.list.forEach(function (i) {
i.ele.removeEventListener(i.type, i.f, false)
})
volantis.EventListener.list = []
}
/******************** volantis.dom.$ ********************************/
// 注:这里没有选择器,也没有forEach一次只处理一个dom,这里重新封装主题常用的dom方法,返回的是dom对象,对象包含了以下方法,同时保留dom的原生API
function volantisDom(ele) {
if (!ele) ele = document.createElement("div")
this.ele = ele;
// ==============================================================
this.ele.find = (c) => {
let q = this.ele.querySelector(c)
if (q)
return new volantisDom(q)
}
// ==============================================================
this.ele.hasClass = (c) => {
return this.ele.className.match(new RegExp('(\\s|^)' + c + '(\\s|$)'));
}
this.ele.addClass = (c) => {
this.ele.classList.add(c);
return this.ele
}
this.ele.removeClass = (c) => {
this.ele.classList.remove(c);
return this.ele
}
this.ele.toggleClass = (c) => {
if (this.ele.hasClass(c)) {
this.ele.removeClass(c)
} else {
this.ele.addClass(c)
}
return this.ele
}
// ==============================================================
// 参数 r 为 true 表示pjax切换页面时事件监听器将被移除,false不移除
this.ele.on = (c, f, r = 1) => {
this.ele.addEventListener(c, f, false)
if (r) {
volantis.EventListener.list.push(new volantisEventListener(c, f, this.ele))
}
return this.ele
}
this.ele.click = (f, r) => {
this.ele.on("click", f, r)
return this.ele
}
this.ele.scroll = (f, r) => {
this.ele.on("scroll", f, r)
return this.ele
}
// ==============================================================
this.ele.html = (c) => {
// if(c=== undefined){
// return this.ele.innerHTML
// }else{
this.ele.innerHTML = c
return this.ele
// }
}
// ==============================================================
this.ele.hide = (c) => {
this.ele.style.display = "none"
return this.ele
}
this.ele.show = (c) => {
this.ele.style.display = "block"
return this.ele
}
// ==============================================================
return this.ele
}
volantis.dom.$ = (ele) => {
return !!ele ? new volantisDom(ele) : null;
}
/******************** RunItem ********************************/
function RunItem() {
this.list = []; // 存放回调函数
this.start = () => {
for (var i = 0; i < this.list.length; i++) {
this.list[i].run();
}
};
this.push = (fn, name, setRequestAnimationFrame = true) => {
let myfn = fn
if (setRequestAnimationFrame) {
myfn = ()=>{
volantis.requestAnimationFrame(fn)
}
}
var f = new Item(myfn, name);
this.list.push(f);
};
this.remove = (name) =>{
for (let index = 0; index < this.list.length; index++) {
const e = this.list[index];
if (e.name == name) {
this.list.splice(index,1);
}
}
}
// 构造一个可以run的对象
function Item(fn, name) {
// 函数名称
this.name = name || fn.name;
// run方法
this.run = () => {
try {
fn()
} catch (error) {
console.log(error);
}
};
}
}
/******************** Pjax ********************************/
// /layout/_plugins/pjax/index.ejs
// volantis.pjax.send(callBack[,"callBackName"]) 传入pjax:send回调函数
// volantis.pjax.push(callBack[,"callBackName"]) 传入pjax:complete回调函数
// volantis.pjax.error(callBack[,"callBackName"]) 传入pjax:error回调函数
volantis.pjax = {};
volantis.pjax.method = {
complete: new RunItem(),
error: new RunItem(),
send: new RunItem(),
};
volantis.pjax = Object.assign(volantis.pjax, {
push: volantis.pjax.method.complete.push,
error: volantis.pjax.method.error.push,
send: volantis.pjax.method.send.push,
});
/******************** RightMenu ********************************/
// volantis.rightmenu.handle(callBack[,"callBackName"]) 外部菜单项控制
// 可在 volantis.mouseEvent 处获取右键事件
volantis.rightmenu = {};
volantis.rightmenu.method = {
handle: new RunItem(),
}
volantis.rightmenu = Object.assign(volantis.rightmenu, {
handle: volantis.rightmenu.method.handle.push,
});
/******************** Dark Mode ********************************/
// /layout/_partial/scripts/darkmode.ejs
// volantis.dark.mode 当前模式 dark or light
// volantis.dark.toggle() 暗黑模式触发器
// volantis.dark.push(callBack[,"callBackName"]) 传入触发器回调函数
volantis.dark = {};
volantis.dark.method = {
toggle: new RunItem(),
};
volantis.dark = Object.assign(volantis.dark, {
push: volantis.dark.method.toggle.push,
});
/******************** Message ********************************/
// VolantisApp.message
/******************** isMobile ********************************/
// /source/js/app.js
// volantis.isMobile
// volantis.isMobileOld
/********************脚本动态加载函数********************************/
// volantis.js(src, cb) cb 可以传入onload回调函数 或者 JSON对象 例如: volantis.js("src", ()=>{}) 或 volantis.js("src", {defer:true,onload:()=>{}})
// volantis.css(src)
// 返回Promise对象,如下方法同步加载资源,这利于处理文件资源之间的依赖关系,例如:APlayer 需要在 MetingJS 之前加载
// (async () => {
// await volantis.js("...theme.plugins.aplayer.js.aplayer...")
// await volantis.js("...theme.plugins.aplayer.js.meting...")
// })();
// 已经加入了setTimeout
volantis.js = (src, cb) => {
return new Promise(resolve => {
setTimeout(function () {
var HEAD = document.getElementsByTagName("head")[0] || document.documentElement;
var script = document.createElement("script");
script.setAttribute("type", "text/javascript");
if (cb) {
if (JSON.stringify(cb)) {
for (let p in cb) {
if (p == "onload") {
script[p] = () => {
cb[p]()
resolve()
}
} else {
script[p] = cb[p]
script.onload = resolve
}
}
} else {
script.onload = () => {
cb()
resolve()
};
}
} else {
script.onload = resolve
}
script.setAttribute("src", src);
HEAD.appendChild(script);
});
});
}
volantis.css = (src) => {
return new Promise(resolve => {
setTimeout(function () {
var link = document.createElement('link');
link.rel = "stylesheet";
link.href = src;
link.onload = resolve;
document.getElementsByTagName("head")[0].appendChild(link);
});
});
}
/********************按需加载的插件********************************/
// volantis.import.jQuery().then(()=>{})
volantis.import = {
jQuery: () => {
if (typeof jQuery == "undefined") {
return volantis.js("https://unpkg.com/volantis-static@0.0.1654736714924/libs/jquery/dist/jquery.min.js")
} else {
return new Promise(resolve => {
resolve()
});
}
}
}
/********************** requestAnimationFrame ********************************/
// 1、requestAnimationFrame 会把每一帧中的所有 DOM 操作集中起来,在一次重绘或回流中就完成,并且重绘或回流的时间间隔紧紧跟随浏览器的刷新频率,一般来说,这个频率为每秒60帧。
// 2、在隐藏或不可见的元素中,requestAnimationFrame 将不会进行重绘或回流,这当然就意味着更少的的 cpu,gpu 和内存使用量。
volantis.requestAnimationFrame = (fn)=>{
if (!window.requestAnimationFrame) {
window.requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame;
}
window.requestAnimationFrame(fn)
}
/************************ layoutHelper *****************************************/
volantis.layoutHelper = (helper, html, opt)=>{
opt = Object.assign({clean:false, pjax:true}, opt)
function myhelper(helper, html, clean) {
volantis.tempDiv = document.createElement("div");
volantis.tempDiv.innerHTML = html;
let layoutHelper = document.querySelector("#layoutHelper-"+helper)
if (layoutHelper) {
if (clean) {
layoutHelper.innerHTML = ""
}
layoutHelper.append(volantis.tempDiv);
}
}
myhelper(helper, html, opt.clean)
if (opt.pjax) {
volantis.pjax.push(()=>{
myhelper(helper, html, opt.clean)
},"layoutHelper-"+helper)
}
}
/****************************** 滚动事件处理 ****************************************/
volantis.scroll = {
engine: new RunItem(),
unengine: new RunItem(),
};
volantis.scroll = Object.assign(volantis.scroll, {
push: volantis.scroll.engine.push,
});
// 滚动条距离顶部的距离
volantis.scroll.getScrollTop = () =>{
let scrollPos;
if (window.pageYOffset) {
scrollPos = window.pageYOffset;
} else if (document.compatMode && document.compatMode != 'BackCompat') {
scrollPos = document.documentElement.scrollTop;
} else if (document.body) {
scrollPos = document.body.scrollTop;
}
return scrollPos;
}
// 使用 requestAnimationFrame 处理滚动事件
// `volantis.scroll.del` 中存储了一个数值, 该数值检测一定时间间隔内滚动条滚动的位移, 数值的检测频率是浏览器的刷新频率. 数值为正数时, 表示向下滚动. 数值为负数时, 表示向上滚动.
volantis.scroll.handleScrollEvents = () => {
volantis.scroll.lastScrollTop = volantis.scroll.getScrollTop()
function loop() {
const scrollTop = volantis.scroll.getScrollTop();
if (volantis.scroll.lastScrollTop !== scrollTop) {
volantis.scroll.del = scrollTop - volantis.scroll.lastScrollTop;
volantis.scroll.lastScrollTop = scrollTop;
// if (volantis.scroll.del > 0) {
// console.log("向下滚动");
// } else {
// console.log("向上滚动");
// }
// 注销过期的unengine未滚动事件
volantis.scroll.unengine.list=[]
volantis.scroll.engine.start();
}else{
volantis.scroll.unengine.start();
}
volantis.requestAnimationFrame(loop)
}
volantis.requestAnimationFrame(loop)
}
volantis.scroll.handleScrollEvents()
volantis.scroll.ele = null;
// 触发页面滚动至目标元素位置
volantis.scroll.to = (ele, option = {}) => {
if (!ele) return;
volantis.scroll.ele = ele;
// 默认配置
opt = {
top: ele.getBoundingClientRect().top + document.documentElement.scrollTop,
behavior: "smooth"
}
// 定义配置
if ("top" in option) {
opt.top = option.top
}
if ("behavior" in option) {
opt.behavior = option.behavior
}
if ("addTop" in option) {
opt.top += option.addTop
}
if (!("observerDic" in option)) {
option.observerDic = 100
}
// 滚动
window.scrollTo(opt);
// 监视器
// 监视并矫正元素滚动到指定位置
// 用于处理 lazyload 引起的 cls 导致的定位失败问题
// option.observer = false
if (option.observer) {
setTimeout(() => {
if (volantis.scroll.ele != ele) {
return
}
volantis.scroll.unengine.push(() => {
let me = ele.getBoundingClientRect().top
if(!(me >= -option.observerDic && me <= option.observerDic)){
volantis.scroll.to(ele, option)
}
volantis.scroll.unengine.remove("unengineObserver")
},"unengineObserver")
},1000)
}
}
/********************** Content Visibility ********************************/
// 见 source/css/first.styl 如果遇到任何问题 删除 .post-story 即可
// 一个元素被声明 content-visibility 属性后 如果元素不在 viewport 中 浏览器不会计算其后代元素样式和属性 从而节省 Style & Layout 耗时
// content-visibility 的副作用: 锚点失效 等等(实验初期 暂不明确), 使用此方法清除样式
volantis.cleanContentVisibility = ()=>{
if (document.querySelector(".post-story")) {
console.log("cleanContentVisibility");
document.querySelectorAll(".post-story").forEach(e=>{
e.classList.remove("post-story")
})
}
}
/******************************************************************************/
/******************************************************************************/
/******************************************************************************/
//图像加载出错时的处理
function errorImgAvatar(img) {
img.src = "https://unpkg.com/volantis-static@0.0.1654736714924/media/placeholder/avatar/round/3442075.svg";
img.onerror = null;
}
function errorImgCover(img) {
img.src = "https://unpkg.com/volantis-static@0.0.1654736714924/media/placeholder/cover/76b86c0226ffd.svg";
img.onerror = null;
}
/******************************************************************************/
</script>
<!-- import head_end begin -->
<!-- import head_end end -->
<!-- Custom Files headEnd begin-->
<!-- Custom Files headEnd end-->
<!-- front-matter head_end begin -->
<!-- front-matter head_end end -->
</head>
<body itemscope itemtype="http://schema.org/WebPage">
<!-- import body_begin begin-->
<!-- import body_begin end-->
<!-- Custom Files bodyBegin begin-->
<!-- Custom Files bodyBegin end-->
<!-- front-matter body_begin begin -->
<!-- front-matter body_begin end -->
<header itemscope itemtype="http://schema.org/WPHeader" id="l_header" class="l_header auto shadow floatable blur show" style='opacity: 0' >
<div class='container'>
<div id='wrapper'>
<div class='nav-sub'>
<p class="title"></p>
<ul class='switcher nav-list-h m-phone' id="pjax-header-nav-list">
<li><a id="s-comment" class="fa-solid fa-comments fa-fw" target="_self" href="/" onclick="return false;" title="comment"></a></li>
<li><a id="s-toc" class="s-toc fa-solid fa-list fa-fw" target="_self" href="/" onclick="return false;" title="toc"></a></li>
</ul>
</div>
<div class="nav-main">
<a class="title flat-box" target="_self" href='index.html'>
xWTF Blog
</a>
<div class='menu navigation'>
<ul class='nav-list-h m-pc'>
<li>
<a class="menuitem flat-box faa-parent animated-hover"
href="index.html" title="博客"
active-action="action-indexhtml"
>
<i class='fas fa-rss fa-fw'></i>博客
</a>
</li>
<li>
<a class="menuitem flat-box faa-parent animated-hover"
href="categories/" title="分类"
active-action="action-categories"
>
<i class='fas fa-folder-open fa-fw'></i>分类
</a>
</li>
<li>
<a class="menuitem flat-box faa-parent animated-hover"
href="tags/" title="标签"
active-action="action-tags"
>
<i class='fas fa-tags fa-fw'></i>标签
</a>
</li>
<li>
<a class="menuitem flat-box faa-parent animated-hover"
href="archives/" title="归档"
active-action="action-archives"
>
<i class='fas fa-archive fa-fw'></i>归档
</a>
</li>
<li>
<a class="menuitem flat-box faa-parent animated-hover"
href="about/" title="关于"
active-action="action-about"
>
<i class='fas fa-info-circle fa-fw'></i>关于
</a>
</li>
</ul>
</div>
<div class="m_search">
<form name="searchform" class="form u-search-form">
<i class="icon fa-solid fa-search fa-fw"></i>
<input type="text" class="input u-search-input" placeholder="搜索" />
</form>
</div>
<ul class='switcher nav-list-h m-phone'>
<li><a class="s-search fa-solid fa-search fa-fw" target="_self" href="/" onclick="return false;" title="search"></a></li>
<li>
<a class="s-menu fa-solid fa-bars fa-fw" target="_self" href="/" onclick="return false;" title="menu"></a>
<ul class="menu-phone list-v navigation white-box">
<li>
<a class="menuitem flat-box faa-parent animated-hover"
href="index.html" title="博客"
active-action="action-indexhtml"
>
<i class='fas fa-rss fa-fw'></i>博客
</a>
</li>
<li>
<a class="menuitem flat-box faa-parent animated-hover"
href="categories/" title="分类"
active-action="action-categories"
>
<i class='fas fa-folder-open fa-fw'></i>分类
</a>
</li>
<li>
<a class="menuitem flat-box faa-parent animated-hover"
href="tags/" title="标签"
active-action="action-tags"
>
<i class='fas fa-tags fa-fw'></i>标签
</a>
</li>
<li>
<a class="menuitem flat-box faa-parent animated-hover"
href="archives/" title="归档"
active-action="action-archives"
>
<i class='fas fa-archive fa-fw'></i>归档
</a>
</li>
<li>
<a class="menuitem flat-box faa-parent animated-hover"
href="about/" title="关于"
active-action="action-about"
>
<i class='fas fa-info-circle fa-fw'></i>关于
</a>
</li>
</ul>
</li>
</ul>
<!-- Custom Files header begin -->
<!-- Custom Files header end -->
</div>
</div>
</div>
</header>
<div id="l_body">
<div id="l_cover">
<!-- see: /layout/_partial/scripts/_ctrl/coverCtrl.ejs -->
<div id="none" class='cover-wrapper blank' style="display: none;">
<div class='cover-bg lazyload placeholder' data-bg="https://gcore.jsdelivr.net/gh/MHG-LAB/cron@gh-pages/bing/bing.jpg"></div>
<div id="scroll-down" style="display: none;"><i class="fa fa-chevron-down scroll-down-effects"></i></div>
</div>
</div>
<div id="safearea">
<div class="body-wrapper">
<div id="l_main" class=''>
<section class="post-list">
<div class='post-wrapper'>
<div class="post post-v3 white-box reveal shadow" itemscope itemtype="http://schema.org/Article" >
<link itemprop="mainEntityOfPage" href="https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf/2024/fingerprint-unlocking-for-windows-server-2025/">
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="xWTF Blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/Post">
<meta itemprop="name" content="xWTF Blog">
<meta itemprop="description" content="">
</span>
<span hidden>
<meta itemprop="image" content="https://unpkg.com/volantis-static@0.0.1654736714924/media/org.volantis/blog/favicon/android-chrome-192x192.png">
</span>
<h2 class="article-title" itemprop="name headline">
<a href="2024/fingerprint-unlocking-for-windows-server-2025/" itemprop="url">
给 Windows Server 2025 配置 Windows Hello 指纹解锁
</a>
</h2>
<div class='md article-desc' itemprop="articleBody">
Windows Server 2025 发布了,不过我在升级后发现 Windows Hello 仍然是用不了的,甚至在登录选项中只有 密码登录 一项,连 Windows Hello 相关的选项本身都消失了:
尝试按照 上一篇博客 的流程进行配置时发现相关登录选项并没有被加回来,无奈只好拖出 IDA 重新研究一下。
初步分析由于这次连相关登录选项都被隐藏了,首先在 AllSystemSett...
</div>
<div class='meta-v3' line_style='solid'>
<div>
<time itemprop="dateCreated datePublished" datetime="2024-12-03T01:21:00+08:00">2024-12-03</time>
</div>
<div>
<a class='readmore' href='2024/fingerprint-unlocking-for-windows-server-2025/' itemprop="url">
阅读全文
</a>
</div>
</div>
</div>
</div>
<div class='post-wrapper'>
<div class="post post-v3 white-box reveal shadow" itemscope itemtype="http://schema.org/Article" >
<link itemprop="mainEntityOfPage" href="https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf/2023/asus-bw16d1h-u-modding/">
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="xWTF Blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/Post">
<meta itemprop="name" content="xWTF Blog">
<meta itemprop="description" content="">
</span>
<span hidden>
<meta itemprop="image" content="https://unpkg.com/volantis-static@0.0.1654736714924/media/org.volantis/blog/favicon/android-chrome-192x192.png">
</span>
<h2 class="article-title" itemprop="name headline">
<a href="2023/asus-bw16d1h-u-modding/" itemprop="url">
将 BW-16D1H-U 改装为 BW-16D1HT 并启用 LibreDrive
</a>
</h2>
<div class='md article-desc' itemprop="articleBody">
华硕的 BW-16D1H-U USB 蓝光光驱是 ITX/mATX 用户播放、刻录蓝光光盘的优秀桌面解决方案之一,数年使用下来体验都不错。
不过,BW-16D1H-U 并不能读取 UHD 碟片,甚至无法读取 BDXL 格式的蓝光。为了解决这些读取需求,同时继续使用 BW-16D1H-U 这个不错的外壳,我决定使用 BW-16D1HT 对其进行升级。
这里记述的操作均为我的个人经验,...
</div>
<div class='meta-v3' line_style='solid'>
<div>
<time itemprop="dateCreated datePublished" datetime="2023-05-13T12:00:00+08:00">2023-05-13</time>
</div>
<div>
<a class='readmore' href='2023/asus-bw16d1h-u-modding/' itemprop="url">
阅读全文
</a>
</div>
</div>
</div>
</div>
<div class='post-wrapper'>
<div class="post post-v3 white-box reveal shadow" itemscope itemtype="http://schema.org/Article" >
<link itemprop="mainEntityOfPage" href="https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf/2021/xbox-gamepad-driver-for-windows-server/">
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="xWTF Blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/Post">
<meta itemprop="name" content="xWTF Blog">
<meta itemprop="description" content="">
</span>
<span hidden>
<meta itemprop="image" content="https://unpkg.com/volantis-static@0.0.1654736714924/media/org.volantis/blog/favicon/android-chrome-192x192.png">
</span>
<h2 class="article-title" itemprop="name headline">
<a href="2021/xbox-gamepad-driver-for-windows-server/" itemprop="url">
给 Windows Server 移植 Xbox 手柄驱动
</a>
</h2>
<div class='md article-desc' itemprop="articleBody">
前段时间迁移到了 Windows Server 2022,使用体验还算不错。不过,最近又发现一个新问题:Xbox 手柄没有驱动。
究其原因,还是 Windows Server 缺少 Xbox 相关的一整套软件,包括 Xbox APP、在线游戏服务、驱动服务等。只要想办法将桌面 Windows 的驱动程序移植过来,就可以正常使用了。
在 Google 上找了一圈,未能找到可借鉴的资料。这里记述...
</div>
<div class='meta-v3' line_style='solid'>
<div>
<time itemprop="dateCreated datePublished" datetime="2021-12-15T12:00:00+08:00">2021-12-15</time>
</div>
<div>
<a class='readmore' href='2021/xbox-gamepad-driver-for-windows-server/' itemprop="url">
阅读全文
</a>
</div>
</div>
</div>
</div>
<div class='post-wrapper'>
<div class="post post-v3 white-box reveal shadow" itemscope itemtype="http://schema.org/Article" >
<link itemprop="mainEntityOfPage" href="https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf/2021/fingerprint-unlocking-for-windows-server-2022/">
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="xWTF Blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/Post">
<meta itemprop="name" content="xWTF Blog">
<meta itemprop="description" content="">
</span>
<span hidden>
<meta itemprop="image" content="https://unpkg.com/volantis-static@0.0.1654736714924/media/org.volantis/blog/favicon/android-chrome-192x192.png">
</span>
<h2 class="article-title" itemprop="name headline">
<a href="2021/fingerprint-unlocking-for-windows-server-2022/" itemprop="url">
给 Windows Server 2022 配置 Windows Hello 指纹解锁
</a>
</h2>
<div class='md article-desc' itemprop="articleBody">
最近从 Windows 10 迁移到了 Windows Server 2022,不过我在设置指纹解锁时发现添加按钮是灰色的,并且系统显示了错误提示 “Windows Hello 在 Windows Server 上不可用”。
在 Google 上找了一圈并没有找到一个可行的方案,这篇 Windows Server 2019 的博客 给出的工具在 2022 中可以加上 PIN,但加上 PIN...
</div>
<div class='meta-v3' line_style='solid'>
<div>
<time itemprop="dateCreated datePublished" datetime="2021-09-23T19:00:00+08:00">2021-09-23</time>
</div>
<div>
<a class='readmore' href='2021/fingerprint-unlocking-for-windows-server-2022/' itemprop="url">
阅读全文
</a>
</div>
</div>
</div>
</div>
<div class='post-wrapper'>
<div class="post post-v3 white-box reveal shadow" itemscope itemtype="http://schema.org/Article" >
<link itemprop="mainEntityOfPage" href="https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf/2021/hello-world/">
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="xWTF Blog">
</span>
<span hidden itemprop="post" itemscope itemtype="http://schema.org/Post">
<meta itemprop="name" content="xWTF Blog">
<meta itemprop="description" content="">
</span>
<span hidden>
<meta itemprop="image" content="https://unpkg.com/volantis-static@0.0.1654736714924/media/org.volantis/blog/favicon/android-chrome-192x192.png">
</span>
<h2 class="article-title" itemprop="name headline">
<a href="2021/hello-world/" itemprop="url">
Hello World
</a>
</h2>
<div class='md article-desc' itemprop="articleBody">
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Qu...
</div>
<div class='meta-v3' line_style='solid'>
<div>
<time itemprop="dateCreated datePublished" datetime="2021-08-17T07:39:07+08:00">2021-08-17</time>
</div>
<div>
<a class='readmore' href='2021/hello-world/' itemprop="url">
阅读全文
</a>
</div>
</div>
</div>
</div>
</section>
</div>
<aside id='l_side' itemscope itemtype="http://schema.org/WPSideBar">
<section class="widget blogger desktop mobile pjax">
<div class='content'>
<a class='avatar flat-box circle' href='/about/'>
<img no-lazy src='https://gravatar.globalslb.net/avatar/f7843355b72d4af2bbf0b4c020f299c2?s=128'/>
</a>
<div class='text'>
<h2>xWTF</h2>
<p>24 y.o. student</p>
</div>
<div class="social-wrapper">
<a href="mailto:e@x.wtf"
class="social fas fa-envelope flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer">
</a>
<a href="https://github.com/xWTF"
class="social fab fa-github flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer">
</a>
<a href="https://t.me/exWTF"
class="social fab fa-telegram flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer">
</a>
</div>
</div>
</section>
<section class="widget tagcloud desktop pjax">
<header>
<a href='/tags/'><i class="fas fa-tags fa-fw" aria-hidden="true"></i><span class='name'>热门标签</span></a>
</header>
<div class='content'>
<a href="tags/Blu-ray/" style="font-size: 14px; color: #999">Blu-ray</a> <a href="tags/Bluetooth/" style="font-size: 14px; color: #999">Bluetooth</a> <a href="tags/Driver/" style="font-size: 14px; color: #999">Driver</a> <a href="tags/LibreDrive/" style="font-size: 14px; color: #999">LibreDrive</a> <a href="tags/UHD/" style="font-size: 14px; color: #999">UHD</a> <a href="tags/Windows-Hello/" style="font-size: 19px; color: #777">Windows Hello</a> <a href="tags/Windows-Server/" style="font-size: 24px; color: #555">Windows Server</a> <a href="tags/Xbox/" style="font-size: 14px; color: #999">Xbox</a> <a href="tags/%E6%8C%87%E7%BA%B9%E8%A7%A3%E9%94%81/" style="font-size: 19px; color: #777">指纹解锁</a>
</div>
</section>
<div class="widget-sticky pjax">
</div>
<!-- 没有 pjax 占位会报错 万恶的 pjax -->
<div class="pjax">
<!-- pjax占位 -->
</div>
<div class="pjax">
<!-- pjax占位 -->
</div>
<div class="pjax">
<!-- pjax占位 -->
</div>
<div class="pjax">
<!-- pjax占位 -->
</div>
<div class="pjax">
<!-- pjax占位 -->
</div>
<!-- Custom Files side begin -->
<!-- Custom Files side end -->
</aside>
<!--此文件用来存放一些不方便取值的变量-->
<!--思路大概是将值藏到重加载的区域内-->
<pjax>
<script>
window.pdata={}
pdata.ispage=false;
pdata.commentPath="";
pdata.commentPlaceholder="";
pdata.commentConfig={};
// see: /layout/_partial/scripts/_ctrl/coverCtrl.ejs
// header
var l_header=document.getElementById("l_header");
l_header.classList.add("show");
// cover
var cover_wrapper=document.querySelector('#l_cover .cover-wrapper');
var scroll_down=document.getElementById('scroll-down');
cover_wrapper.id="none";
cover_wrapper.style.display="none";
scroll_down.style.display="none";
</script>
</pjax>
</div>
<footer class="footer clearfix" itemscope itemtype="http://schema.org/WPFooter">
<br><br>
<br>
<div class="social-wrapper" itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="mailto:e@x.wtf"
class="social fas fa-envelope flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer" itemprop="url">
</a>
<a href="https://github.com/xWTF"
class="social fab fa-github flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer" itemprop="url">
</a>
<a href="https://t.me/exWTF"
class="social fab fa-telegram flat-btn"
target="_blank"
rel="external nofollow noopener noreferrer" itemprop="url">
</a>
</div>
<div><p>博客内容遵循 <a target="_blank" rel="noopener" href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh">署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 协议</a></p>
</div>
<div class='copyright'>
<p><a target="_blank" rel="noopener" href="https://x.wtf/">Copyright © 2021 xWTF</a></p>
</div>
<!-- Custom Files footer begin-->
<!-- Custom Files footer end-->
</footer>
<a id="s-top" class="fa-solid fa-arrow-up fa-fw" href="/" onclick="return false;" title="top"></a>
</div>
</div>
<div>
<script>
/******************** volantis.dom ********************************/
// 页面选择器 将dom对象缓存起来 see: /source/js/app.js etc.
volantis.dom.bodyAnchor = volantis.dom.$(document.getElementById("safearea")); // 页面主体
volantis.dom.topBtn = volantis.dom.$(document.getElementById('s-top')); // 向上
volantis.dom.wrapper = volantis.dom.$(document.getElementById('wrapper')); // 整个导航栏
volantis.dom.coverAnchor = volantis.dom.$(document.querySelector('#l_cover .cover-wrapper')); // 1个
volantis.dom.switcher = volantis.dom.$(document.querySelector('#l_header .switcher .s-search')); // 搜索按钮 移动端 1个
volantis.dom.header = volantis.dom.$(document.getElementById('l_header')); // 移动端导航栏
volantis.dom.search = volantis.dom.$(document.querySelector('#l_header .m_search')); // 搜索框 桌面端 移动端 1个
volantis.dom.mPhoneList = volantis.dom.$(document.querySelectorAll('#l_header .m-phone .list-v')); // 手机端 子菜单 多个
</script>
<script>
volantis.css("https://unpkg.com/volantis-static@0.0.1654736714924/libs/@fortawesome/fontawesome-free/css/all.min.css");
</script>
<!-- required -->
<!-- internal -->
<script src="/js/app.js"></script>
<div id="rightmenu-wrapper">
<ul class="list-v rightmenu" id="rightmenu-content">
<li class='navigation menuNavigation-Content'>
<a class='nav icon-only fix-cursor-default' onclick='history.back()'><i class='fa fa-arrow-left fa-fw'></i></a>
<a class='nav icon-only fix-cursor-default' onclick='history.forward()'><i class='fa fa-arrow-right fa-fw'></i></a>
<a class='nav icon-only fix-cursor-default' onclick='window.location.reload()'><i class='fa fa-redo fa-fw'></i></a>
<a class='nav icon-only fix-cursor-default' href='/'><i class='fa fa-home fa-fw'></i></a>
</li>
<li class='option menuOption-Content'>
<span class='vlts-menu opt fix-cursor-default menu-Option' data-fn-type='copyText'>
<i class='fa fa-copy fa-fw'></i> 复制文本
</span>
<span class='vlts-menu opt fix-cursor-default menu-Option' data-fn-type='copyPaste'>
<i class='fa fa-paste fa-fw mR12'></i> 粘贴文本
</span>
<span class='vlts-menu opt fix-cursor-default menu-Option' data-fn-type='copySelect'>
<i class='fa fa-object-ungroup fa-fw mR12'></i> 全选文本
</span>
<span class='vlts-menu opt fix-cursor-default menu-Option' data-fn-type='copyCut'>
<i class='fa fa-cut fa-fw mR12'></i> 剪切文本
</span>
<span class='vlts-menu opt fix-cursor-default menu-Option' data-fn-type='searchWord'>
<i class='fa fa-search fa-fw'></i> 站内搜索
</span>
<span class='vlts-menu opt fix-cursor-default menu-Option' data-fn-type='openTab'>
<i class='fa fa-external-link-square-alt fa-fw mR12'></i> 在新标签页打开
</span>
<span class='vlts-menu opt fix-cursor-default menu-Option' data-fn-type='copySrc'>
<i class='fa fa-image fa-fw mR12'></i> 复制图片地址
</span>
<span class='vlts-menu opt fix-cursor-default menu-Option' data-fn-type='copyImg'>
<i class='fa fa-images fa-fw mR12'></i> 复制图片文件
</span>
</li>
<li class='option menuOption-Content'>
<span class='vlts-menu opt fix-cursor-default toggle-mode-btn' id='menuDarkBtn'>
<i class='fas fa-moon fa-fw '></i> 深色模式
</span>
</li>
</ul>
</div>
<script>volantis.js('/js/plugins/rightMenu.js')</script>
<!-- rightmenu要在darkmode之前(ToggleButton) darkmode要在comments之前(volantis.dark.push)-->
<script>
function loadIssuesJS() {
const sites_api = document.getElementById('sites-api');
if (sites_api != undefined && typeof SitesJS === 'undefined') {
volantis.js("/js/plugins/tags/sites.js")
}
const friends_api = document.getElementById('friends-api');
if (friends_api != undefined && typeof FriendsJS === 'undefined') {
volantis.js("/js/plugins/tags/friends.js")
}
const contributors_api = document.getElementById('contributors-api');
if (contributors_api != undefined && typeof ContributorsJS === 'undefined') {
volantis.js("/js/plugins/tags/contributors.js")
}
};
loadIssuesJS()
volantis.pjax.push(()=>{
loadIssuesJS();
})
</script>
<script defer src="https://unpkg.com/volantis-static@0.0.1654736714924/libs/vanilla-lazyload/dist/lazyload.min.js"></script>
<script>
// https://www.npmjs.com/package/vanilla-lazyload
// Set the options globally
// to make LazyLoad self-initialize
window.lazyLoadOptions = {
elements_selector: ".lazyload",
threshold: 0
};
// Listen to the initialization event
// and get the instance of LazyLoad
window.addEventListener(
"LazyLoad::Initialized",
function (event) {
window.lazyLoadInstance = event.detail.instance;
},
false
);
document.addEventListener('DOMContentLoaded', function () {
lazyLoadInstance.update();
});
document.addEventListener('pjax:complete', function () {
lazyLoadInstance.update();
});
</script>
<script>
window.FPConfig = {
delay: 0,
ignoreKeywords: ["#"],
maxRPS: 6,
hoverDelay: 0
};
</script>
<script defer src="https://unpkg.com/volantis-static@0.0.1654736714924/libs/flying-pages/flying-pages.min.js"></script>
<!-- optional -->
<script>
const SearchServiceDataPathRoot = ("/" || "/").endsWith("/") ?
"/" || "/" :
"//" || "/";
const SearchServiceDataPath = SearchServiceDataPathRoot + "content.json";
function loadSearchScript() {
// see: layout/_partial/scripts/_ctrl/cdnCtrl.ejs
return volantis.js("/js/search/hexo.js");
}
function loadSearchService() {
loadSearchScript();
document.querySelectorAll(".input.u-search-input").forEach((e) => {
e.removeEventListener("focus", loadSearchService, false);
});
document.querySelectorAll(".u-search-form").forEach((e) => {
e.addEventListener("submit", (event) => {
event.preventDefault();
}, false);
});
}
// 打开并搜索 字符串 s
function OpenSearch(s) {
if (typeof SearchService === 'undefined')
loadSearchScript().then(() => {
SearchService.setQueryText(s);
SearchService.search();
});
else {
SearchService.setQueryText(s);
SearchService.search();
}
}
// 访问含有 ?s=xxx 的链接时打开搜索 // 与搜索引擎 structured data 相关: /scripts/helpers/structured-data/lib/config.js
if (window.location.search && /^\?s=/g.test(window.location.search)) {
let queryText = decodeURI(window.location.search)
.replace(/\ /g, "-")
.replace(/^\?s=/g, "");
OpenSearch(queryText);
}
// 搜索输入框获取焦点时加载搜索
document.querySelectorAll(".input.u-search-input").forEach((e) => {
e.addEventListener("focus", loadSearchService, false);
});
</script>
<script>
function pjax_highlightjs_copyCode(){
if (!(document.querySelector(".highlight .code pre") ||
document.querySelector(".article pre code"))) {
return;
}
VolantisApp.utilCopyCode(".highlight .code pre, .article pre code")
}
volantis.requestAnimationFrame(pjax_highlightjs_copyCode)
volantis.pjax.push(pjax_highlightjs_copyCode)
</script>
<script>
function load_swiper() {
if (!document.querySelectorAll(".swiper-container")[0]) return;
volantis.css("https://unpkg.com/volantis-static@0.0.1654736714924/libs/swiper/swiper-bundle.min.css");
volantis.js("https://unpkg.com/volantis-static@0.0.1654736714924/libs/swiper/swiper-bundle.min.js").then(() => {
pjax_swiper();
});
}
load_swiper();
function pjax_swiper() {
volantis.swiper = new Swiper('.swiper-container', {
slidesPerView: 'auto',
spaceBetween: 8,
centeredSlides: true,
loop: true,
pagination: {
el: '.swiper-pagination',
clickable: true,
},
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
});
}
volantis.pjax.push(() => {
if (!document.querySelectorAll(".swiper-container")[0]) return;
if (typeof volantis.swiper === "undefined") {
load_swiper();
} else {
pjax_swiper();
}
});
</script>
<!-- pjax 标签必须存在于所有页面 否则 pjax error -->
<pjax>
</pjax>
<script>
function listennSidebarTOC() {
const navItems = document.querySelectorAll(".toc li");
if (!navItems.length) return;
let targets = []
const sections = [...navItems].map((element) => {
const link = element.querySelector(".toc-link");
const target = document.getElementById(
decodeURI(link.getAttribute("href")).replace("#", "")
);
targets.push(target)
// 解除 a 标签 href 的 锚点定位, a 标签 href 的 锚点定位 会随机启用?? 产生错位???
link.setAttribute("onclick","return false;")
link.setAttribute("toc-action","toc-"+decodeURI(link.getAttribute("href")).replace("#", ""))
link.setAttribute("href","/")
// 配置 点击 触发新的锚点定位
link.addEventListener("click", (event) => {
event.preventDefault();
// 这里的 addTop 是通过错位使得 toc 自动展开.
volantis.scroll.to(target,{addTop: 5, observer:true})
// Anchor id
history.pushState(null, document.title, "#" + target.id);
});
return target;
});
function activateNavByIndex(target) {
if (target.classList.contains("active-current")) return;
document.querySelectorAll(".toc .active").forEach((element) => {
element.classList.remove("active", "active-current");
});
target.classList.add("active", "active-current");
let parent = target.parentNode;
while (!parent.matches(".toc")) {
if (parent.matches("li")) parent.classList.add("active");
parent = parent.parentNode;
}
}
// 方案一:
volantis.activateNavIndex=0
activateNavByIndex(navItems[volantis.activateNavIndex])
volantis.scroll.push(()=>{
if (targets[0].getBoundingClientRect().top >= 0) {
volantis.activateNavIndex = 0
}else if (targets[targets.length-1].getBoundingClientRect().top < 0) {
volantis.activateNavIndex = targets.length-1
} else {
for (let index = 0; index < targets.length; index++) {
const target0 = targets[index];
const target1 = targets[(index+1)%targets.length];
if (target0.getBoundingClientRect().top < 0&&target1.getBoundingClientRect().top >= 0) {
volantis.activateNavIndex=index
break;
}
}
}
activateNavByIndex(navItems[volantis.activateNavIndex])
})
// 方案二:
// IntersectionObserver 不是完美精确到像素级别 也不是低延时性的
// function findIndex(entries) {
// let index = 0;
// let entry = entries[index];
// if (entry.boundingClientRect.top > 0) {
// index = sections.indexOf(entry.target);
// return index === 0 ? 0 : index - 1;
// }
// for (; index < entries.length; index++) {
// if (entries[index].boundingClientRect.top <= 0) {
// entry = entries[index];
// } else {
// return sections.indexOf(entry.target);
// }
// }
// return sections.indexOf(entry.target);
// }
// function createIntersectionObserver(marginTop) {
// marginTop = Math.floor(marginTop + 10000);
// let intersectionObserver = new IntersectionObserver(
// (entries, observe) => {
// let scrollHeight = document.documentElement.scrollHeight;
// if (scrollHeight > marginTop) {
// observe.disconnect();
// createIntersectionObserver(scrollHeight);
// return;
// }
// let index = findIndex(entries);
// activateNavByIndex(navItems[index]);
// }, {
// rootMargin: marginTop + "px 0px -100% 0px",
// threshold: 0,
// }
// );
// sections.forEach((element) => {
// element && intersectionObserver.observe(element);
// });
// }
// createIntersectionObserver(document.documentElement.scrollHeight);
}
document.addEventListener("DOMContentLoaded", ()=>{
volantis.requestAnimationFrame(listennSidebarTOC)
});
document.addEventListener("pjax:success", ()=>{
volantis.requestAnimationFrame(listennSidebarTOC)
});
</script>
<script>
document.onreadystatechange = function () {
if (document.readyState == 'complete') {
// 页面加载完毕 样式加载失败,或是当前网速慢,或是开启了省流模式
const { saveData, effectiveType } = navigator.connection || navigator.mozConnection || navigator.webkitConnection || {}
if (getComputedStyle(document.querySelector("#safearea"), null)["display"] == "none" || saveData || /2g/.test(effectiveType)) {
document.querySelectorAll(".reveal").forEach(function (e) {
e.style["opacity"] = "1";
});
document.querySelector("#safearea").style["display"] = "block";
}
}
}
</script>
<script type="application/ld+json">[{"@context":"http://schema.org","@type":"Organization","name":"xWTF Blog","url":"https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf/","logo":{"@type":"ImageObject","url":"https://unpkg.com/volantis-static@0.0.1654736714924/media/org.volantis/blog/favicon/android-chrome-192x192.png","width":192,"height":192}},{"@context":"http://schema.org","@type":"Person","name":"xWTF","image":{"@type":"ImageObject","url":"https://unpkg.com/volantis-static@0.0.1654736714924/media/org.volantis/blog/favicon/android-chrome-192x192.png"},"url":"https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf/","sameAs":["https://github.com/volantis-x"],"description":null},{"@context":"http://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"item":{"@id":"https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf/","name":"xWTF Blog"}}]},{"@context":"http://schema.org","@type":"WebSite","name":"xWTF Blog","url":"https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf/","keywords":null,"description":null,"author":{"@type":"Person","name":"xWTF","image":{"@type":"ImageObject","url":"https://unpkg.com/volantis-static@0.0.1654736714924/media/org.volantis/blog/favicon/android-chrome-192x192.png"},"url":"https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf/","description":null},"publisher":{"@type":"Organization","name":"xWTF Blog","url":"https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf/","logo":{"@type":"ImageObject","url":"https://unpkg.com/volantis-static@0.0.1654736714924/media/org.volantis/blog/favicon/android-chrome-192x192.png","width":192,"height":192}},"potentialAction":{"@type":"SearchAction","name":"Site Search","target":{"@type":"EntryPoint","urlTemplate":"https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf?s={search_term_string}"},"query-input":"required name=search_term_string"}},{"@context":"http://schema.org","@type":"BlogPosting","description":null,"inLanguage":["zh-CN","en","default"],"mainEntityOfPage":{"@type":"WebPage"},"author":{"@type":"Person","name":"xWTF","image":{"@type":"ImageObject","url":"https://unpkg.com/volantis-static@0.0.1654736714924/media/org.volantis/blog/favicon/android-chrome-192x192.png"},"url":"https://afa31148-4a8c-4113-a92f-72626cd2a27b.x.wtf/"},"publisher":{"@type":"Organization","name":"xWTF Blog","logo":{"@type":"ImageObject","url":"https://unpkg.com/volantis-static@0.0.1654736714924/media/org.volantis/blog/favicon/android-chrome-192x192.png","width":192,"height":192}},"wordCount":0,"image":{"@type":"ImageObject","url":"https://unpkg.com/volantis-static@0.0.1654736714924/media/org.volantis/blog/favicon/android-chrome-192x192.png","width":192,"height":192}}]</script>
<!--
pjax重载区域接口:
1. <pjax></pjax> 标签 pjax 标签必须存在于所有页面 否则 pjax error
2. script[data-pjax]
3. .pjax-reload script
4. .pjax
-->
<script src="https://unpkg.com/volantis-static@0.0.1654736714924/libs/pjax/pjax.min.js"></script>
<script>
var pjax;
document.addEventListener('DOMContentLoaded', function () {
pjax = new Pjax({
elements: 'a[href]:not([href^="#"]):not([href="javascript:void(0)"]):not([pjax-fancybox]):not([onclick="return false;"]):not([onclick="return!1"]):not([target="_blank"]):not([target="view_window"]):not([href$=".xml"])',
selectors: [
"head title",
"head meta[name=keywords]",
"head meta[name=description]",
"#l_main",
"#pjax-header-nav-list",
".pjax",
"pjax", // <pjax></pjax> 标签
"script[data-pjax], .pjax-reload script" // script标签添加data-pjax 或 script标签外层添加.pjax-reload 的script代码段重载
],
cacheBust: false, // url 地址追加时间戳,用以避免浏览器缓存
timeout: 5000,
});
});
document.addEventListener('pjax:send', function (e) {
//window.stop(); // 相当于点击了浏览器的停止按钮
try {
var currentUrl = window.location.pathname;
var targetUrl = e.triggerElement.href;
var banUrl = [""];
if (banUrl[0] != "") {
banUrl.forEach(item => {
if(currentUrl.indexOf(item) != -1 || targetUrl.indexOf(item) != -1) {
window.location.href = targetUrl;
}
});
}
} catch (error) {}
// 使用 volantis.pjax.send 方法传入pjax:send回调函数 参见layout/_partial/scripts/global.ejs
volantis.pjax.method.send.start();
});
document.addEventListener('pjax:complete', function () {
// 使用 volantis.pjax.push 方法传入重载函数 参见layout/_partial/scripts/global.ejs
volantis.pjax.method.complete.start();
});
document.addEventListener('pjax:error', function (e) {
if(volantis.debug) {
console.error(e);
console.log('pjax error: \n' + JSON.stringify(e));
}else{
// 使用 volantis.pjax.error 方法传入pjax:error回调函数 参见layout/_partial/scripts/global.ejs
volantis.pjax.method.error.start();
window.location.href = e.triggerElement.href;
}
});
</script>
</div>
<!-- import body_end begin-->
<!-- import body_end end-->
<!-- Custom Files bodyEnd begin-->
<!-- Custom Files bodyEnd end-->
<!-- front-matter body_end begin -->
<!-- front-matter body_end end -->
</body>
</html>