forked from tjy-gitnub/win12
-
Notifications
You must be signed in to change notification settings - Fork 0
/
boot.html
56 lines (50 loc) · 1.62 KB
/
boot.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Windows 12 网页版</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
@font-face {
font-family: 'dos';
src: url(../../fonts/dos.ttf);
}
* {
font-family: 'dos';
padding: 0px;
margin: 0px;
border: 0px;
-webkit-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
scrollbar-width: none;
/* Firefox */
-ms-overflow-style: none;
/* IE 10+ */
}
::-webkit-scrollbar {
display: none;
/* Chrome Safari */
}
.loading {
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body style="background-color: black;color: white;cursor: none;/*加载界面隐藏鼠标指针*/" id="body" scroll="no">
<div id="center-div" style="width:114;/*width不重要,重要的是height*/"></div>
<div id="info">
<div class="loading">
<p>Starting</p>
<div id="load" style="background-color: #acabac; width: 200px; height:20px;"></div>
<div id="back" style="background-color: #565656; width:200px; height:20px;"></div>
<br />
</div>
<p style="text-align: center;">Press F2 or touch screen to enter SETUP</p>
</div>
<script src="./scripts/boot_kernel.js"></script>
</body>
</html>