-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWin8OOBE.html
267 lines (262 loc) · 9.07 KB
/
Win8OOBE.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Windows 8 OOBE</title>
<link rel="icon" href="./Assets/app.png" type="image/x-icon">
<!--WMProject1217 Studios-->
<style type="text/css">
* {
font-family: "微软雅黑","Microsoft YaHei","Segoe UI","Lucida Grande",Helvetica,Arial,"FreeSans","Arimo","Droid Sans","wenquanyi micro hei","Hiragino Sans GB","Hiragino Sans GB W3","Arial","sans-serif";
cursor: none;
}
body {
color: #FFFFFF;
}
body.xgoing0 {
background-color: #000000;
}
body.xgoing1 {
transition: all .7s;
background-color: #000000;
animation: xgoing1ani 20s linear infinite 0s;
}
@keyframes xgoing1ani {
0% {
background:green;
}
20% {
background:#287BB5;
}
40% {
background:#601EB3;
}
60% {
background:#f03;
}
75%{
background: #FB0;
}
90%{
background: #23B9A0;
}
100% {
background:green;
}
}
</style>
<style type="text/css">
#oobeend {
display: none;
;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
color: #fff;
background: #000;
/*cursor: none;*/
}
#oobeword01,#oobeword02 {
display: none;
position: absolute;
top: 44.5%;
left: 0%;
width: 100%;
font-family: 微软雅黑;
font-weight: 100;
text-align: center;
font-size: 55px;
z-index: 1000;
}
#oobeword1 {
display: none;
position: absolute;
top: 44.5%;
left: 0%;
width: 100%;
font-family: 微软雅黑;
font-weight: 100;
text-align: center;
font-size: 55px;
z-index: 1000;
}
#oobeword2 {
display: none;
position: absolute;
bottom: 5%;
left: 0%;
width: 100%;
font-family: 微软雅黑;
font-weight: 100;
text-align: center;
font-size: 30px;
z-index: 1000;
}
@keyframes oobe1 {
0% {
opacity: 0;
}
6% {
opacity: 1;
}
}
@keyframes oobe0 {
0% {
opacity: 0;
}
90% {
opacity: 1;
}
}
</style>
</head>
<body class="xgoing0">
<span id="oobeword01"></span>
<span id="oobeword02"></span>
<span id="oobeword1"></span>
<span id="oobeword2"></span>
<div id="oobeend"></div>
</body>
<script>
function changertp() {
window.temp_i = window.temp_i + 1;
oobeword01.style.opacity = (window.temp_i/100);
console.log(window.temp_i);
if (window.temp_i == 100) {
window.temp_i = 100;
setTimeout("changertp2();", 2000);
return 0;
}
setTimeout("changertp();", 12);
}
function changertp2() {
window.temp_i = window.temp_i - 1;
oobeword01.style.opacity = (window.temp_i/100);
console.log(window.temp_i);
if (window.temp_i == 0) {
oobeword01.innerHTML = ""
oobeword01.style.display = "none";
window.temp_i = 0;
setTimeout('oobeword02.innerHTML = "我们正在为你进行相关设置";oobeword02.style.display = "block";changertp3();', 128);
return 0;
}
setTimeout("changertp2();", 12);
}
function changertp3() {
window.temp_i = window.temp_i + 1;
oobeword02.style.opacity = (window.temp_i/100);
console.log(window.temp_i);
if (window.temp_i == 100) {
window.temp_i = 100;
setTimeout("changertp4();", 3000);
return 0;
}
setTimeout("changertp3();", 12);
}
function changertp4() {
window.temp_i = window.temp_i - 1;
oobeword02.style.opacity = (window.temp_i/100);
console.log(window.temp_i);
if (window.temp_i == 0) {
oobeword02.innerHTML = ""
oobeword02.style.display = "none";
window.temp_i = 0;
setTimeout('document.getElementsByTagName("body")[0].className="xgoing1";oobeword2.innerHTML = "正在安装应用";oobeword1.innerHTML = "你可以从应用商店获取新应用";oobeword1.style.display = "block";oobeword2.style.display = "block";changertp5();', 128);
return 0;
}
setTimeout("changertp4();", 12);
}
function changertp5() {
window.temp_i = window.temp_i + 1;
oobeword1.style.opacity = (window.temp_i/100);
oobeword2.style.opacity = (window.temp_i/100);
console.log(window.temp_i);
if (window.temp_i == 100) {
window.temp_i = 100;
setTimeout("changertp6();", 60000);
return 0;
}
setTimeout("changertp5();", 12);
}
function changertp6() {
window.temp_i = window.temp_i - 1;
oobeword1.style.opacity = (window.temp_i/100);
console.log(window.temp_i);
if (window.temp_i == 0) {
oobeword1.innerHTML = ""
oobeword1.style.display = "none";
window.temp_i = 0;
setTimeout('oobeword1.innerHTML = "正在处理一些事情";oobeword2.innerHTML = "请不要关闭计算机";oobeword1.style.display = "block";oobeword2.style.display = "block";changertp7();', 128);
return 0;
}
setTimeout("changertp6();", 12);
}
function changertp7() {
window.temp_i = window.temp_i + 1;
oobeword1.style.opacity = (window.temp_i/100);
console.log(window.temp_i);
if (window.temp_i == 100) {
window.temp_i = 100;
setTimeout("changertp8();", 30000);
return 0;
}
setTimeout("changertp7();", 12);
}
function changertp8() {
window.temp_i = window.temp_i - 1;
oobeword1.style.opacity = (window.temp_i/100);
console.log(window.temp_i);
if (window.temp_i == 0) {
oobeword1.innerHTML = ""
oobeword1.style.display = "none";
window.temp_i = 0;
setTimeout('document.getElementsByTagName("body")[0].className="xgoing0";oobeword1.style.top = "44.5%";oobeword1.innerHTML = "请尽情使用吧";oobeword1.style.display = "block";oobeword2.innerHTML = "";oobeword2.style.display = "none";changertp9();', 128);
return 0;
}
setTimeout("changertp8();", 12);
}
function changertp9() {
window.temp_i = window.temp_i + 1;
oobeword1.style.opacity = (window.temp_i/100);
console.log(window.temp_i);
if (window.temp_i == 100) {
window.temp_i = 100;
setTimeout("changertp10();", 5000);
return 0;
}
setTimeout("changertp9();", 12);
}
function changertp10() {
location.reload();
}
window.temp_i = 0;
oobeword01.innerHTML = "你好"
oobeword01.style.display = "block";
changertp();
/*
if (window.rtsecond >= 5) {
//oobeword1.innerHTML="苟利PC生死以,岂因bug避趋之<br>这些更新能为你提供更多的bug"
oobeword2.innerHTML = "请勿™关闭电脑。"
oobeword01.innerHTML = ""
oobeword02.innerHTML = ""
oobeword1.innerHTML = "这可能需要几世纪"
}
if (window.rtsecond >= 35) {
oobeword1.innerHTML = "一切交给我们来处理"
oobeword2.innerHTML = "请勿™关闭电脑。"
}
if (window.rtsecond >= 65) {
oobeword1.innerHTML = "千门万户曈曈日,总把新桃换旧符<br>Windows将保持bug最多状态,为你的网络之旅设置障碍"
oobeword2.innerHTML = "请勿™关闭电脑。"
}
if (window.rtsecond >= 95) {
oobeword1.innerHTML = "马上就好"
oobeword2.innerHTML = ""
oobeend.style.display = "block";
}
if (window.rtsecond >= 100) {
location.reload()
}*/
</script>