-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·1077 lines (916 loc) · 43.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<script src="js/vue.global.prod.js"></script>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?f0bc5db3cebaa3dece8258828b9d47b5";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="keywords" content="Edgeless,PE,启动盘,u盘启动盘制作工具,u盘装系统,u盘启动,一键u盘装系统,edgeless pe">
<title>Edgeless-强大而优雅的半开源PE工具</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="css/all.css">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="css/mdb.min.css" rel="stylesheet">
<!-- Your custom styles (optional) -->
<link href="css/style.min.css" rel="stylesheet">
<style type="text/css">
/* Necessary for full page carousel*/
html,
body,
header,
.view {
height: 100%;
}
/* Carousel*/
.carousel,
.carousel-item,
.carousel-item.active {
height: 100%;
}
.carousel-inner {
height: 100%;
}
@media (min-width: 800px) and (max-width: 850px) {
.navbar:not(.top-nav-collapse) {
background: #1C2331 !important;
}
}
@font-face {
font-family: earth;
src: url('fonts/earth.ttf'), url('fonts/earth.woff');
/* IE9+ */
}
</style>
</head>
<body onselectstart='return false'>
<!-- 导航栏 -->
<nav class="navbar fixed-top navbar-expand-lg navbar-dark scrolling-navbar">
<div class="container">
<!-- Brand -->
<a class="navbar-brand" href="#">
<font size="1" face="earth">edgElEss</font>
</a>
<!-- Collapse -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Links -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<!-- Left -->
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="#">首页</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#feature">特性</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#donate">捐赠</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://wiki.edgeless.top/v2" target="_blank">文档</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="#me">Edgeless ME</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="https://github.com/EdgelessPE/Edgeless" target="_blank">GitHub</a>
</li>
<li class="nav-item"></li>
</ul>
<!-- Right -->
<ul class="navbar-nav nav-flex-icons">
<li class="nav-item">
<a href="#download"
class="nav-link border border-light rounded waves-effect waves-light"> 下载 </a>
</li>
</ul>
</div>
</div>
</nav>
<!-- 导航栏 -->
<div id="carousel-example-1z" class="carousel slide carousel-fade">
<!--翻页指示器-->
<ol class="carousel-indicators">
<li data-target="#carousel-example-1z" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-1z" data-slide-to="1"></li>
<li data-target="#carousel-example-1z" data-slide-to="2"></li>
<li data-target="#carousel-example-1z" data-slide-to="3"></li>
</ol>
<!--翻页指示器-->
<!--页面-->
<div class="carousel-inner" role="listbox">
<!--页面1-->
<div class="carousel-item active">
<div class="view"
style="background-image: url('/img/picbed/r1.jpg'); background-repeat: no-repeat; background-size: cover;">
<div class="mask rgba-black-light d-flex justify-content-center align-items-center">
<div class="text-center white-text mx-5 wow fadeIn">
<h1 class="mb-4">
<font size="40" face="earth"><strong>edgElEss</strong></font>
</h1>
<p class="mb-4 d-none d-md-block">
<strong>强大而优雅的半开源PE工具</strong>
</p>
<p id="version">
Beta公测版本:{{beta}}
<template v-if="alpha!='0.0.0'">
Alpha内测版本:{{alpha}}
</template>
</p>
</div>
</div>
</div>
</div>
<!--页面1-->
<!--页面2-->
<div class="carousel-item">
<div class="view"
style="background-image: url('/img/picbed/r2.jpg'); background-repeat: no-repeat; background-size: cover;">
<div class="mask rgba-black-light d-flex justify-content-center align-items-center">
<div class="text-center white-text mx-5 wow fadeIn">
<h1 class="mb-4">
<strong>强大的插件包功能</strong>
</h1>
<p>
<strong>自由组合插件包,快速打造最适合你的PE</strong>
</p>
<a href="#plugin" class="btn btn-outline-white btn-lg">了解详情</a>
</div>
</div>
</div>
</div>
<!--页面2-->
<!--页面3-->
<div class="carousel-item">
<div class="view"
style="background-image: url('/img/picbed/r3.jpg'); background-repeat: no-repeat; background-size: cover;">
<div class="mask rgba-black-light d-flex justify-content-center align-items-center">
<div class="text-center white-text mx-5 wow fadeIn">
<h1 class="mb-4">
<strong>优雅的主题包功能</strong>
</h1>
<p>
<strong>在界面上实现高度自定义,我的PE就是与众不同</strong>
</p>
<a href="#theme" class="btn btn-outline-white btn-lg">了解详情</a>
</div>
</div>
</div>
</div>
<!--页面3-->
<!--页面4-->
<div class="carousel-item">
<div class="view"
style="background-image: url('/img/picbed/r4.jpg'); background-repeat: no-repeat; background-size: cover;">
<div class="mask rgba-black-light d-flex justify-content-center align-items-center">
<div class="text-center white-text mx-5 wow fadeIn">
<h1 class="mb-4">
<strong>也许是东半球第一个部分开源的PE项目</strong>
</h1>
<p>
<strong>恪守三无原则:无广告无收费无劫持,告别流氓PE的困扰</strong>
</p>
<a href="https://github.com/EdgelessPE/Edgeless" class="btn btn-outline-white btn-lg"
target="_blank">查看仓库</a>
</div>
</div>
</div>
</div>
<!--页面4-->
</div>
<!--页面-->
<!--控制器-->
<a class="carousel-control-prev" href="#carousel-example-1z" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carousel-example-1z" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
<!--控制器-->
<div id="feature"></div>
</div>
<main>
<div class="container">
<section class="w3l-index-block3">
<div class="section-info py-5">
<div class="container py-md-3">
<h2 class="h2 text-center mb-5">谁说PE只能满足维护?</h2>
<div class="row">
<div class="col-md-6 mb-4">
<p>
<h4>维护只是副业,我们对PE有更高的追求</h4>
<br><br>Edgeless的创立旨在试图替代WTG的部分应用场景
<br><br>在保留原生Win10系统体验的同时提供强大、便捷、易用的自定义能力
<br><br>我们不断探索PE的极限,力图打造可玩性最佳的PE工具,为您呈现一份最适合您的PE </p>
</div>
<div class="col-md-6 mb-4">
<img src="/img/picbed/f1.jpg" class="img-fluid z-depth-1-half"
alt="">
</div>
</div>
</div>
</div>
</section>
<!--区域1-->
<section class="mt-5 wow fadeIn">
<div class="row">
<div class="col-md-6 mb-4">
<img src="/img/picbed/f2.jpg" class="img-fluid z-depth-1-half" alt="">
</div>
<div class="col-md-6 mb-4">
<h3 class="h3 mb-3">基于 Win10 的PE核心</h3>
<hr>
<br>
<p>• 使用19043作为母盘,强力驱动主流配置机型</p>
<br>
<p>• 支持Legacy+UEFI双引导,支持识别主流NVME协议SSD</p>
<br>
<p>• 提供有线+无线网络连接能力,同时具备较为完整的库文件支持</p>
<div id="plugin"></div>
<p></p>
</div>
</div>
</section>
<!--区域1-->
<hr class="my-5">
<!--区域2-->
<section>
<h3 class="h3 text-center mb-5">强大的插件包</h3>
<div class="row wow fadeIn">
<div class="col-lg-6 col-md-12 px-4">
<div class="row">
<div class="col-1 mr-3">
<i class="fa fa-hashtag fa-2x cyan-text"></i>
</div>
<div class="col-10">
<h5 class="feature-title">功能强劲</h5>
<p class="grey-text">
软件、壁纸、图标、主题、脚本、驱动、库文件...
<br>
简单的操作,让您无需具备相应专业知识即可全面定制属于您的启动盘
</p>
</div>
</div>
<div style="height:30px"></div>
<div class="row">
<div class="col-1 mr-3">
<i class="fa fa-rocket fa-2x" style="color: #F44336"></i>
</div>
<div class="col-10">
<h5 class="feature-title">易于管理</h5>
<p class="grey-text">在启动盘指定目录放置.7z插件包即可应用插件
<br>
使用命令行包管理程序ept或聚合客户端完全管理您的插件
</p>
</div>
</div>
<div style="height:30px"></div>
<div class="row">
<div class="col-1 mr-3">
<i class="fa fa-book fa-2x green-text"></i>
</div>
<div class="col-10">
<h5 class="feature-title">提供开发者文档</h5>
<p class="grey-text">
插件包原理简单易懂,快速完成开发
<br>
使用专为调试插件包设计的开发工具并在交流群寻求帮助
</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<img src="/img/picbed/f3.jpg" class="img-fluid z-depth-1-half" alt="">
</div>
</div>
<div id="theme"></div>
</section>
<hr class="my-5">
<section>
<h3 class="h3 text-center mb-5">优雅的主题包</h3>
<div class="row wow fadeIn">
<div class="col-md-6 mb-4">
<img src="/img/picbed/f4.jpg" class="img-fluid z-depth-1-half" alt="">
</div>
<div class="col-lg-6 col-md-12 px-4">
<div class="row">
<div class="col-1 mr-3">
<i class="fa fa-magic fa-2x orange-text"></i>
</div>
<div class="col-10">
<h5 class="feature-title">覆盖全面</h5>
<p class="grey-text">启动界面、桌面图标、系统图标、鼠标指针、桌面壁纸、开始菜单样式均可实现修改</p>
</div>
</div>
<div style="height:30px"></div>
<div class="row">
<div class="col-1 mr-3">
<i class="fa fa-puzzle-piece fa-2x" style="color: #3F51B5"></i>
</div>
<div class="col-10">
<h5 class="feature-title">控制面板</h5>
<p class="grey-text">使用主题包作者提供的控制面板实现更全面的主题沉浸体验</p>
</div>
</div>
<div style="height:30px"></div>
<div class="row">
<div class="col-1 mr-3">
<i class="fas fa-graduation-cap fa-2x purple-text"></i>
</div>
<div class="col-10">
<h5 class="feature-title">轻松上手,助力开发</h5>
<p class="grey-text">专注于内容差异的艺术创作,无需操心底层实现<br>允许使用已有资源包搭配生成主题包</p>
</div>
</div>
</div>
</div>
</section>
<hr class="my-5">
<section>
<h3 class="h3 text-center mb-5">酣畅淋漓 分秒必争</h3>
<div>
<div>
<div class="row">
<div class="col-1 mr-3">
<i class="fa fa-snowflake fa-2x" style="color: #03A9F4"></i>
</div>
<div class="col-10">
<h5 class="feature-title">删去不常用的多余组件</h5>
<p class="grey-text">Edgeless的定位并非维护PE,因此我们大胆地删除了启动菜单及其他启动内核用不到的组件</p>
</div>
</div>
<div style="height:30px"></div>
<div class="row">
<div class="col-1 mr-3">
<i class="fa fa-window-restore fa-2x" style="color: #009688;"></i>
</div>
<div class="col-10">
<h5 class="feature-title">寄生启动</h5>
<p class="grey-text">业界首次提出“寄生启动”概念,依托于现有启动盘启动Edgeless而无需重新制作启动盘,同时享有更优秀的启动菜单和旧版内核</p>
</div>
</div>
<div style="height:30px"></div>
<div class="row">
<div class="col-1 mr-3">
<i class="fa fa-bolt fa-2x yellow-text"></i>
</div>
<div class="col-10">
<h5 class="feature-title">轻量级架构</h5>
<p class="grey-text">
镜像启动逻辑与微软官方镜像类似,便于实现更多自定义玩法
</p>
</div>
</div>
</div>
</div>
<div id="clear"></div>
</section>
<hr class="my-5">
<section>
<h2 class="my-5 h3 text-center">不仅仅是纯净</h2>
<div class="row features-small mb-5 mt-3 wow fadeIn">
<div class="col-md-4">
<div class="row">
<div class="col-10">
<h2>恪守“三无”原则</h2>
<div style="height:15px"></div>
</div>
</div>
<div class="row">
<div class="col-2">
<i class="fas fa-check-circle fa-2x indigo-text"></i>
</div>
<div class="col-10">
<h6 class="feature-title">无广告</h6>
<p class="grey-text">官方PE内核、官方插件、官方网站均无广告
</p>
<div style="height:15px"></div>
</div>
</div>
<div class="row">
<div class="col-2">
<i class="fas fa-check-circle fa-2x indigo-text"></i>
</div>
<div class="col-10">
<h6 class="feature-title">无收费</h6>
<p class="grey-text">官方PE内核、官方插件均为永久免费使用,内测交流群永久免费进群,拒绝变相收费</p>
<div style="height:15px"></div>
</div>
</div>
<div class="row">
<div class="col-2">
<i class="fas fa-check-circle fa-2x indigo-text"></i>
</div>
<div class="col-10">
<h6 class="feature-title">无劫持</h6>
<p class="grey-text">官方PE核心、官方插件不会对本地硬盘的系统进行任何恶意修改</p>
<div style="height:15px"></div>
</div>
</div>
</div>
<div class="col-md-4 flex-center">
<img src="/img/picbed/f5.png" class="img-fluid z-depth-1-half" alt=""
class="z-depth-0 img-fluid">
</div>
<div class="col-md-4 mt-2">
<!--First row-->
<div class="row">
<div class="col-10">
<h2>有胆量就开源</h2>
<div style="height:15px"></div>
</div>
</div>
<div class="row">
<div class="col-2">
<i class="fas fa-check-circle fa-2x indigo-text"></i>
</div>
<div class="col-10">
<h6 class="feature-title">多数原创代码均遵循MPL-2.0协议开源</h6>
<p class="grey-text">欢迎各位同行在遵循MPL-2.0协议的前提下使用我们的原创代码<br><a
href="https://github.com/EdgelessPE/Edgeless" target="_blank">查看GitHub仓库</a></p>
<div style="height:15px"></div>
</div>
</div>
<div class="row">
<div class="col-2">
<i class="fas fa-check-circle fa-2x indigo-text"></i>
</div>
<div class="col-10">
<h6 class="feature-title">大量使用解释型代码</h6>
<p class="grey-text">使用批处理和PECMD脚本实现功能<br>无需复杂的逆向操作,Edgeless的运行过程清晰可见
</p>
<div style="height:15px"></div>
</div>
</div>
<div class="row">
<div class="col-2">
<i class="fas fa-check-circle fa-2x indigo-text"></i>
</div>
<div class="col-10">
<h6 class="feature-title">欢迎修改打包形成自己的作品</h6>
<p class="grey-text">我们开放了Edgeless内核的修改授权,请前往文档的“合作洽谈”章节查看要求</p>
<div style="height:15px"></div>
</div>
</div>
</div>
</div>
</section>
<hr class="mb-5">
<section>
<h2 class="my-5 h3 text-center">打动你的更多细节</h2>
<div class="row features-small mt-5 wow fadeIn">
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fab fa-usb fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2 pl-3">
<h5 class="feature-title font-bold mb-1">完整的U盘管理过程</h5>
<p class="grey-text mt-2">拥有第三方提供的U盘管家,支持悬浮窗和托盘管理USB存储设备</p>
</p>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fas fa-desktop fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">重写复现的显示设置</h5>
<p class="grey-text mt-2">业界首创使用"分辨率.txt"和"wp.jpg"自定义启动分辨率和壁纸、支持PE内更改分辨率和更换壁纸
</p>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fa fa-file-image fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">缩略图可用</h5>
<p class="grey-text mt-2">支持资源管理器界面显示缩略图,附带原生图片查看器</p>
</p>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fa fa-arrow-down fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">插件包下载器</h5>
<p class="grey-text mt-2">内置插件包下载器,即装即用的畅快体验
</p>
</div>
</div>
</div>
</div>
<div class="row features-small mt-4 wow fadeIn">
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fa fa-list-alt fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">过期插件包检查功能</h5>
<p class="grey-text mt-2">跟随内核实时更新已过期插件包信息,避免不必要的空间浪费
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fa fa-link fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">关联.wim/.esd文件</h5>
<p class="grey-text mt-2">业界首创.wim/.esd文件关联到NTSetup,初代源代码开源在无忧启动论坛
</p>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fa fa-database fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">智能虚拟光驱</h5>
<p class="grey-text mt-2">提供镜像操作面板,快速安装系统镜像
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fa fa-folder fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">快速访问安装镜像文件夹</h5>
<p class="grey-text mt-2">自动在桌面生成U盘安装镜像文件夹的快捷方式</p>
</div>
</div>
</div>
</div>
<div class="row features-small mt-4 wow fadeIn">
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fa fa-laptop fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">较为全面的驱动支持</h5>
<p class="grey-text mt-2">完美驱动您的新机型</p>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fa fa-mobile fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">MTP和USB共享网络</h5>
<p class="grey-text mt-2">支持部分手机的MTP和RNDIS功能(取决于手机驱动是否能安装)
</p>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fa fa-cube fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">MSI安装包支持</h5>
<p class="grey-text mt-2">允许部分MSI安装包运行</p>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="far fa-file-code fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">补充"Windows"文件夹</h5>
<p class="grey-text mt-2">快速补充缺失的运行库文件</p>
</div>
</div>
</div>
</div>
<div class="row features-small mt-4 wow fadeIn">
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fas fa-cogs fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">功能开关</h5>
<p class="grey-text mt-2">无需插件包,快速实现部分个人偏好选项的设置</p>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fa fa-arrow-circle-up fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">LocalBoost仓库加速</h5>
<p class="grey-text mt-2">将插件安装至本地硬盘,以提升80%的Edgeless启动速度
</p>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fa fa-plug fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">全局日志和API</h5>
<p class="grey-text mt-2">指定日志文件写入方便提交报告BUG<br>提供便捷的API以供调用</p>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-6">
<div class="row">
<div class="col-2">
<i class="fa fa-terminal fa-2x mb-1 indigo-text" aria-hidden="true"></i>
</div>
<div class="col-10 mb-2">
<h5 class="feature-title font-bold mb-1">自定义Hook脚本</h5>
<p class="grey-text mt-2">通过自行编写Hook脚本为Edgeless提供更强的功能和特性</p>
</div>
</div>
</div>
</div>
</section>
<div id="donate"></div>
<hr class="mb-5">
<section>
<div class="section">
<div class="container">
<div class="card-deck">
<div class="card pricing">
<div class="card-body" align="center">
<br>
<h2 style="color:#2F5696">如果您认可<font face="earth">edgElEss</font>
</h2>
<br>
<h1 style="color:#2F5696">请帮助我们继续前行</h1>
<br>
<a href="https://wiki.edgeless.top/v2/global/donate.html" target="_blank"><img src="img/pay.png"
alt="" width="250" height="250" class="rounded" />
<h4 style="color:#0072bc">支持支付宝、微信、QQ</h4>
</a>
<small style="color:#0072bc">点击二维码查看捐赠列表,如需要退款请联系我们</small>
<br><br><br><br>
<div>
<h3 style="color:#2F5696">扫码付费过于直白?<gbr>我们提供了额外的捐赠方式</gbr>
</h3>
<br><br>
<a href="meal/index.html" target="_blank" class="btn btn-primary">让我康康</a><br>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="download"></div>
<br><br>
</section>
<hr class="mb-5">
<section class="card wow fadeIn"
style="background-image: url(/img/picbed/d.jpg);">
<div class="card-body text-white text-center py-5 px-5 my-5">
<h1 class="mb-4">
<h1><strong>立即获取</strong>
<font face="earth">edgElEss</font><strong>及其组件</strong>
</h1>
</h1>
<br><br>
<a href="https://down.edgeless.top" target="_blank" class="btn btn-outline-white" role="button"><i
class="fas fa-arrow-circle-down ml-2"></i> 下载站 </a>
<a href="https://down.edgeless.top/?backup=1" target="_blank" class="btn btn-outline-white" role="button"><i
class="fas fa-download ml-2"></i> 备用站 </a>
<a href="https://down.edgeless.top/?backup=2" target="_blank" class="btn btn-outline-white" role="button"><i
class="fas fa-cloud ml-2"></i> 网盘分享 </a>
<br><br><br><br>
<p><small><i>使用Edgeless(包括其相关功能)表示您已经阅读并同意<a href="https://wiki.edgeless.top/v2/global/contract.html"
target="_blank" style="color: white">手册中的用户协议</a></i></small></p>
</div>
</section>
<br><br>
</div>
</main>
<hr class="mb-5">
<section>
<div class="section light-bg">
<div align="center">
<h1 style="color:#2F5696">三步打造属于你的<br>
<font face="earth">edgElEss</font>
</h1>
</div>
<br><br>
<div class="container">
<div class="row">
<div class="col-md-8 d-flex align-items-center">
<ul class="list-unstyled ui-steps">
<li class="media">
<div class="circle-icon mr-4">1</div>
<div class="media-body">
<h4 style="color:#2F5696">下载</h4>
<p>通过上方的下载链接下载Edgeless Hub聚合客户端并运行<br><br><small
style="color:#505356">提示:Edgeless Hub仅支持Windows10 64位平台,您可能需要根据提供的教程自行完成制作。</small> </p>
</div>
</li>
<li class="media my-4">
<div class="circle-icon mr-4">2</div>
<div class="media-body">
<h4 style="color:#2F5696">写入</h4>
<p>将一个容量大于等于1GB(建议4GB及以上且支持USB3.x)的空U盘插入计算机,运行Edgeless Hub并根据提示执行写入操作<br><br><small
style="color:#505356">注意:U盘内的数据(包括所有分区数据)都将会被清空!请注意备份!</small></p>
</div>
</li>
<li class="media">
<div class="circle-icon mr-4">3</div>
<div class="media-body">
<h4 style="color:#2F5696">配置</h4>
<p>在Edgeless Hub的插件板块中下载、管理您的插件,或是进行个性化配置<br><br><small
style="color:#505356">从下载站下载的主题资源包没有特定的位置,请任意新建一个文件夹放置</small> </p>
</div>
</li>
<br>
<li class="media">
<div align="right">
<a href="https://wiki.edgeless.top/v2/guide/burn.html" target="_blank"
class="btn btn-primary">详细步骤</a>
</div>
</li>
</ul>
</div>
<div class="col-md-4">
<img src="/img/picbed/b.png" alt="" class="img-fluid">
</div>
</div>
</div>
</div>
</section>
<div><br></div>
<section class="w3l-index-block3">
<div id="me"></div>
<div class="section-info py-5">
<div class="container py-md-3">
<h1 style="color:#2F5696" class="h1 text-center mb-5">了解Edgeless ME</h1>
<div class="row cwp17-two align-items-center">
<div class="col-md-6 cwp17-image">
<img src="img/LOGO_WEPE.png" class="img-fluid" alt="" />
</div>
<div class="col-md-6 cwp17-text">
<h2>忠实的微PE用户?</h2>
<p>在重新写入之前不妨试试这个——Edgeless ME 微PE专用版<br>在微PE上体验Edgeless的便捷方便 </p>
<a href="https://wiki.edgeless.top/v2/faq/ME.html" style="color:#2F5696" target="_blank">查看教程
»</a>
<a href="https://lanzoui.com/i8tbj0h" style="color:#2F5696" target="_blank">点击获取 »</a>
</div>
</div>
</div>
</div>
</section>
<footer class="page-footer text-center font-small mt-4 wow fadeIn">
<div class="pt-4" id="py">
<h5>友情链接</h5>
<font color="grey">Portal</font>
<br>
<a href="https://www.firpe.cn" target="_blank" title="与Edgeless和谐共进的友商">FirPE</a>
<a href="https://github.com/EdgelessPE/Samare" target="_blank" title="一个具有高拓展性的实验性质PE">Samare</a>
<a href="https://www.hotpe.top/" target="_blank">HotPE</a>
<a href="http://cowpe.myzwq.cn/" target="_blank">CowPE</a>
<a href="https://www.win-compe.top/" target="_blank">ComPE</a>
<a href="https://windsys.whatk.me" target="_blank" title="方便好用的非盈利Project">Windsys Project</a>
<a href="https://third.win/" target="_blank" title="分享第三方社区 Windows 系统的部落">ThirdWIN</a>
<a href="jump/coolexe.html" target="_blank" title="一个啥都有的杂货铺">阿酷杂货铺</a>
<a href="https://www.ghpym.com/" target="_blank" title="还原软件的本质">果核剥壳</a>
<a href="https://wngamebox.cn/" target="_blank" title="热爱生活和游戏,用双手创造更多乐趣!">WNGameBox</a>
<a href="https://my-file.cn/" target="_blank" title="热爱生活和游戏,用双手创造更多乐趣!">Myfile私有云盘</a>
<br>
<font color="grey">Blog</font>
<br>
<a href="https://www.edgeless.top" target="_blank" title="L0serJ3rry的博客">Cno</a>
<a href="http://www.wuliao666.cn" target="_blank" title="今晚月色很美">今天好无聊</a>
<a href="jump/403blog.html" target="_blank" title="喜欢卖萌和女装的的Web手">可爱多一点</a>
<a href="https://wanghongfeng.cn" target="_blank" title="迷失的人迷失了,相逢的人会再相逢">王洪峰</a>
<a href="https://mask6asok.top/" target="_blank" title="莫师傅牛逼">Mask</a>
<a href="https://blog.prometheuspica.top/" target="_blank">Spica</a>
<a href="jump/hevenkin.html" target="_blank" title="不去尝试,怎会成功">Heven Kin</a>
<a href="https://www.whoit.top" target="_blank" title="永远年轻,永远热泪盈眶">皮毛技术君</a>
<a href="https://www.edgelogs.com/" target="_blank" title="面朝大海,春暖花开">BJY678</a>
<a href="https://cuonc.com" target="_blank" title="愿你出走半生,归来仍是少年">XiaoJun</a>
<a href="https://www.ygsea.com" target="_blank" title="分享心得经验,体会生活美好">阳光之海</a>
<a href="https://horatio.cn/" target="_blank" title="一个沙雕网友的个人博客">Horatio</a>
<a href="https://tokisaki.top" target="_blank"
title="僕らの手には何もないけど,かわりに つなぎあえるから">Tokisaki-Galaxy</a>
<a href="https://blog.dmcimi.top/" target="_blank" title="天下风云出我辈,一入江湖岁月催">Dmcimi</a>
<a href="https://suan2005.com/" target="_blank" title="诶嘿">酸酸</a>
<a href="https://rickg.cn/" target="_blank" title="#114514">Cpl.Kerry</a>
<a href="https://copur.xyz/" target="_blank">Copur</a>
<a href="https://tim-paik.github.io/" target="_blank">Tim_Paik</a>
<a href="https://blog.as2o3.xyz/" target="_blank">as2o3</a>
<a href="https://www.evassd.cn/" target="_blank">EVA存储</a>
<a href="https://www.tyatt.top/" target="_blank">Bill50han</a>
<br><br><br><br>
<svg style="margin-top: -3px;" t="1635599987840" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2100" width="20" height="20"><path d="M542.528 479.424c0-17.6 14.336-32.064 32-32.064s32 14.464 32 32.064S592.192 511.36 574.528 511.36 542.528 497.088 542.528 479.424zM857.792 915.264c-35.136 41.6-92.096 46.08-114.944 46.08-5.568 0-9.152-0.256-9.728-0.32l-182.016 0.064 0 0.064L288.192 961.152c-0.128 0-3.072 0.256-8.064 0.256-21.12 0-78.656-4.224-114.048-46.208-52.736-62.528-22.72-134.016-21.44-137.024l209.088-439.232L353.728 249.024C339.904 245.312 323.904 238.272 310.464 225.152 298.56 213.44 284.416 192.384 284.416 158.4c0-26.816 8.96-49.92 25.92-66.816 28.096-28.032 67.776-28.928 72.96-28.928 0 0 0.064 0 0.128 0l108.992 0 39.232 0 109.12 0c40.768 2.176 98.816 29.44 98.816 95.744 0 51.072-33.408 78.464-66.752 89.28l0.192 91.392 205.888 438.272C880.64 781.184 910.656 852.736 857.792 915.264zM278.464 646.016c32.384 14.272 99.904 32.64 200.768 1.152 110.144-34.432 200.064-34.304 255.808-28.48L609.024 346.24 608.704 190.016l31.168-0.832c10.56-0.448 35.712-4.48 35.712-30.784 0-27.008-28.16-31.168-36.864-31.808L531.648 126.656l0 0L383.232 126.656C370.368 126.848 348.416 131.328 348.416 158.4c0 14.272 5.184 19.392 6.912 21.056 8.448 8.32 24.256 10.048 27.392 9.728l32.576-0.576 2.496 32.576L414.656 359.936 278.464 646.016zM820.544 803.584l-53.376-115.392c-30.784-6.656-132.736-22.592-268.864 20.032-46.976 14.656-88.64 20.096-124.48 20.096-55.488 0-96.512-12.928-122.816-24.704l-48 100.928c0 0.192-14.72 37.504 12.096 69.312 18.56 21.952 57.344 23.872 70.656 23.296l187.072-0.064 0-0.064 262.912 0c16 1.28 54.656-1.28 73.216-23.168C835.968 841.856 820.736 803.968 820.544 803.584z" p-id="2101" fill="#ffffff"></path></svg> <a href="jump/qqg.html" target="_blank">获取内测</a>