-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
197 lines (180 loc) · 6.96 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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<title>macOS</title>
<link rel="icon" href="./images/AppleInternalIcon 2.png" />
<style>
body {
cursor: none!important;
}
@keyframes progressAnimation {
0% {
width: 0%;
}
100% {
width: 60%;
}
}
@keyframes progressContinue {
0% {
width: 60%;
}
100% {
width: 100%;
}
}
#alert-window {
width: 260px;
height: 232px;
box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05), 0 38px 90px 0 rgba(0, 0, 0, 0.25), 0 0 1px 0 rgba(0, 0, 0, 0.60), inset 0 0 3px 0 rgba(255, 255, 255, 0.10);
border-radius: 10px;
background: #fbfbfb6f;
font-size: 13px;
text-align: center;
line-height: 16px;
position: absolute;
top: calc(50% - 132.5px);
left: calc(50% - 130px);
backdrop-filter: blur(30px);
-webkit-backdrop-filter: blur(30px);
z-index: 3;
opacity: 0;
animation: Alert 0.5s forwards ease-in-out, opacityBegin 0.525s forwards ease-in-out;
animation-delay: 0.75s;
}
#alert-window img {
width: 24.61%;
height: 24.15%;
margin-top: 7.5%;
border-radius: 16px;
opacity: 0;
animation: opacityBegin 0.25s forwards ease-in-out;
animation-delay: 0.75s;
}
#alert-window #title {
font-size: 13px;
font-weight: bold;
margin: 0;
margin-top: 7.5%;
opacity: 0;
animation: opacityBegin 0.25s forwards ease-in-out;
animation-delay: 0.75s;
}
#alert-window #des {
font-size: 13px;
font-weight: normal;
margin: 0;
margin-top: 3.77%;
opacity: 0;
animation: opacityBegin 0.25s forwards ease-in-out;
animation-delay: 0.75s;
}
#alert-window #btn {
font-size: 13px;
text-align: center;
line-height: 16px;
width: 87.69230769231%;
height: 9.811320754717%;
position: absolute;
top: 69.8%;
left: calc(50% - 87.69230769231% / 2);
display: inline-flex;
justify-content: center;
align-items: center;
border-radius: 5px;
background-image: linear-gradient(179deg, rgba(255, 255, 255, 0.17) 0%, rgba(255, 255, 255, 0.00) 96%), linear-gradient(to bottom right, #2277ff, #0c61ff);
background-size: 100% 100%;
color: #000000;
}
#alert-window #btn p {
margin: 0;
color: #fff;
}
</style>
<script>
setTimeout(function () {
const ad = new Audio('audio/Begin.mp3')
ad.play()
}, 1000)
</script>
</head>
<body style="height: 100vh; overflow: hidden; background-color: #000;">
<div style="position: relative; width: 100%; height: 100%;">
<div style="position: absolute; top: calc(50% - 52px); left: calc(50% - 52px); filter: invert(100%)">
<img src="./images/AppleInternalIcon 2.png" alt="Apple Logo" width="104" height="104" id="logo"
style="opacity: 0;" />
</div>
</div>
<div id="progress-bar"
style="width: 15%; height: 3%; align-items: center; text-align: center; margin: auto; position: absolute; top: 92.5%; left: calc(50% - 15% / 2)">
<div style="background-color: #222; border-radius: 15px; height: 8.5px; overflow: hidden;" id="frame">
<div id="progress"
style="background-color: #ddd; width: 0%; height: 100%; animation: progressAnimation 6s forwards ease-out; opacity: 1; animation-delay: 1.5s;">
</div>
</div>
</div>
<noscript id="alert-window" style="animation-delay: 0s; z-index: 10000;">
<img style="animation: none; opacity: 1;" src="./images/AlertStopIcon 3.png" />
<p id="title" style="animation: none; opacity: 1;">No!!!</p>
<p id="des" style="animation: none; opacity: 1;">You disabled JavaScript.</p>
<div id="btn" onclick="window.location = 'about:blank'">
<p onclick="window.location = 'about:blank'">Exit</p>
</div>
</noscript>
<script>
function redirectToDesktop() {
window.location.href = "logon.html?bg=show"
}
function $$(id) {
return document.getElementById(id)
}
var logo = $$("logo")
var progressBar = $$("progress")
var frame = $$("frame");
frame.style.backgroundColor = '#000'
setTimeout(function () {
var rd = Math.random()
if (rd < 0.25) {
logo.style.opacity = 1
logo.src = "./images/Unsupported 2.png"
logo.style.width = `128px`
logo.style.height = `128px`
logo.style.filter = 'invert(100%)'
progressBar.style.display = 'none'
} else {
logo.style.opacity = 1
setTimeout(function () {
frame.style.backgroundColor = '#222';
frame.style.border = `solid 0.4px rgba(255, 255, 255, 0.25)`;
setTimeout(function () {
frame.style.border = `none`
setTimeout(function () {
frame.style.border = `solid 0.4px rgba(255, 255, 255, 0.25)`;
setTimeout(function () {
frame.style.border = `none`;
}, 2000);
}, 1000);
}, 7500);
}, 500)
setTimeout(function () {
logo.style.opacity = 0
progressBar.style.opacity = 0
frame.style.backgroundColor = '#000'
setTimeout(function () {
logo.style.opacity = 1
progressBar.style.opacity = 1
progressBar.style.animation = `progressContinue 2s forwards ease-out`
frame.style.backgroundColor = '#222';
setTimeout(function () {
logo.style.opacity = 0
progressBar.style.opacity = 0
frame.style.backgroundColor = '#000'
setTimeout(redirectToDesktop, 1000)
}, 2000)
}, 1000)
}, 8000)
}
}, 1000)
</script>
</body>
</html>