-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (55 loc) · 1.48 KB
/
Copy pathindex.html
File metadata and controls
57 lines (55 loc) · 1.48 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
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Windows 98</title>
<script type="module" src="./src/os/index.js"></script>
<link href="./assets/favicon.ico" rel="icon">
<link href="./style/style.css" rel="stylesheet">
<style>
@keyframes progress {
from {
transform: translateX(0);
}
to {
transform: translateX(50%);
}
}
#booting {
background: #000080 url(./assets/booting.webp);
background-size: 100vw 100vh;
height: 100%;
position: fixed;
width: 100%;
z-index: 1001;
}
#bootingProgress {
animation: 1.5s infinite linear progress;
background: linear-gradient(90deg, #527bb5, #bbb, #527bb5, #bbb, #527bb5);
bottom: 0;
height: calc(10% / 6);
left: -100%;
position: absolute;
width: 200%;
}
</style>
</head>
<body>
<div id="booting">
<div id="bootingProgress"></div>
</div>
<div id="taskbar">
<button id="startButton"></button>
<ul id="startMenu"></ul>
<span class="separator"></span>
<div id="taskbarButtons"></div>
<span class="separator"></span>
<div id="dateAndTime"></div>
</div>
<span id="devNote">
This project is under development.
<br>
Optimized for <a href="https://www.google.com/chrome/">Google Chrome</a>.
</span>
</body>
</html>