-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (48 loc) · 2.06 KB
/
index.html
File metadata and controls
52 lines (48 loc) · 2.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>欢迎访问 Webintosh | Welcome to Webintosh</title>
<link rel="stylesheet" href="assets/styles/font.css" />
<link rel="stylesheet" href="assets/styles/oobe.css" />
<!-- <link rel="stylesheet" href="assets/styles/cursor.css" /> -->
</head>
<body>
<div container>
<div main>
<img src="assets/images/Sequoia.png" />
<p title>欢迎访问 Webintosh</p>
<p subtitle>此页面仍在开发!</p>
<p description>
此网页会在您的浏览器中带来几乎真实的 <a link href="https://apple.com.cn/mac">Mac(intosh)</a> 体验。<br />
登录密码可以使用下列密码的任选其一来登录: Ventura,Sonoma,Sequoia。那么点击继续按钮来享受丝滑的 Mac 体验吧!<br />
如果您需要类似 Mac 的 Boot Chime 自检通过音效,请在点击按钮后做一些与网页的交互来绕过自动播放限制。
</p>
<div bottom-content>
<hr />
<div inner-content>
<widget-button style="transform: scale(1.2)" command="getStarted()">继续</widget-button>
</div>
</div>
<!-- <p license>Made with html by CodeCrafter-TL ❤</p> -->
</div>
</div>
<script>
function getStarted() {
setTimeout(function () {
if (Math.random() <= 0.5) {
window.location = 'firmware/?theme=gray';
} else {
window.location = 'firmware/?theme=black';
}
}, 50);
}
window.onload = () => {
document.getElementById('cursor').src = "assets/images/Cursor.svg";
};
</script>
<script type="module" src="src/js/ui.js"></script>
<!-- <script src="src/js/cursor.js"></script> -->
</body>
</html>