-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (130 loc) · 3.18 KB
/
index.html
File metadata and controls
148 lines (130 loc) · 3.18 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Windows XP</title>
<link href="/icon/favicon (5).ico" rel="icon" type="image/x-icon">
<meta name="description" content="WIndows XP Experience">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<style>
:root {
--bg: radial-gradient(1200px at top, #1b1f3b, #0a0c16);
--glass: rgba(255, 255, 255, 0.07);
--border: rgba(255, 255, 255, 0.18);
--glow: rgba(120, 140, 255, 0.45);
}
* {
box-sizing: border-box;
font-family: "Inter", system-ui, sans-serif;
}
html, body {
margin: 0;
width: 100%;
height: 100%;
background: var(--bg);
overflow: hidden;
}
body {
display: flex;
align-items: center;
justify-content: center;
}
.container {
position: relative;
width: 94%;
height: 94%;
background: var(--glass);
border-radius: 20px;
border: 1px solid var(--border);
backdrop-filter: blur(20px);
box-shadow:
0 0 80px var(--glow),
inset 0 0 0 1px rgba(255,255,255,0.05);
overflow: hidden;
animation: enter 1s ease-out;
}
header {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 56px;
display: flex;
align-items: center;
padding: 0 20px;
background: linear-gradient(
to bottom,
rgba(0,0,0,0.35),
rgba(0,0,0,0)
);
z-index: 10;
pointer-events: none;
}
header span {
font-size: 14px;
letter-spacing: 0.14em;
color: rgba(255,255,255,0.85);
}
iframe {
width: 100%;
height: 100%;
border: none;
}
.loader {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
letter-spacing: 0.2em;
color: rgba(255,255,255,0.8);
background: linear-gradient(
180deg,
rgba(0,0,0,0.5),
rgba(0,0,0,0.8)
);
transition: opacity 0.6s ease;
z-index: 20;
pointer-events: none;
}
.loader.hidden {
opacity: 0;
}
@keyframes enter {
from {
opacity: 0;
transform: scale(0.96);
}
to {
opacity: 1;
transform: scale(1);
}
}
</style>
</head>
<body>
<div class="container">
<header>
<span>Windows XP Simulation</span>
</header>
<div class="loader" id="loader">LOADING WINDOWS_XP.iso</div>
<iframe
src="https://xp.quenq.com"
allowfullscreen
loading="eager"
referrerpolicy="no-referrer">
</iframe>
</div>
<script>
const iframe = document.querySelector("iframe");
const loader = document.getElementById("loader");
iframe.addEventListener("load", () => {
loader.classList.add("hidden");
});
</script>
</body>
</html>
<script async data-explicit-opt-in="true" data-deployment-id="dpl_BnaPe88q5y5bdnD2u3uLGd6sHbuG" src="https://vercel.live/_next-live/feedback/feedback.js"></script>