-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdedications.html
More file actions
204 lines (193 loc) · 8.75 KB
/
Copy pathdedications.html
File metadata and controls
204 lines (193 loc) · 8.75 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>x3e unblocked games // dedications</title>
<link rel="icon" type="image/png" href="https://cdn.jsdelivr.net/gh/gamebackup/gamebackup.github.io@main/images/Cat-looks-inside-meme.png">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<style>
body { margin: 0; background-color: #111; color: white; min-height: 100vh; }
#particle-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: .4; }
.dedications-wrap { position: relative; z-index: 1; padding: 40px 20px 60px; max-width: 680px; margin: 0 auto; }
.dedications-header { text-align: center; margin-bottom: 40px; }
.dedications-header h1 {
font-family: 'Orbitron', monospace; font-weight: 900;
font-size: 2.2rem; letter-spacing: 3px; text-transform: uppercase;
background: linear-gradient(135deg, #fff, #e61587);
-webkit-background-clip: text; background-clip: text; color: transparent;
margin: 0 0 8px;
position: relative;
}
.dedications-header h1::after, .dedications-header h1::before {
content: attr(data-text);
position: absolute; top: 0; left: 0;
width: 100%; overflow: hidden;
background: linear-gradient(135deg, #fff, #e61587);
-webkit-background-clip: text; background-clip: text; color: transparent;
}
.dedications-header h1::before {
animation: glitch1 4s infinite;
clip-path: polygon(0 25%, 100% 25%, 100% 45%, 0 45%);
}
.dedications-header h1::after {
animation: glitch2 2s infinite;
clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
}
.dedications-sub {
font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem;
color: rgba(255,255,255,0.45); letter-spacing: 2px; text-transform: uppercase;
}
.d-card {
background: rgba(30,30,30,0.6);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 12px;
padding: 22px 26px;
margin-bottom: 14px;
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
transition: all 0.3s cubic-bezier(.4,0,.2,1);
position: relative;
overflow: hidden;
}
.d-card::before {
content: ''; position: absolute; top: 0; left: 0;
width: 100%; height: 3px;
background: linear-gradient(90deg, transparent, #e61587, transparent);
opacity: 0.4;
transition: opacity 0.3s;
}
.d-card:hover {
border-color: rgba(230,21,135,0.4);
background: rgba(230,21,135,0.06);
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(230,21,135,0.15);
}
.d-card:hover::before { opacity: 1; }
.d-card-title {
font-family: 'Orbitron', sans-serif; font-weight: 700;
font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
color: #e61587; margin: 0 0 6px;
}
.d-card-body {
font-family: 'Space Grotesk', sans-serif; font-weight: 400;
font-size: 1rem; color: rgba(255,255,255,0.8); margin: 0;
}
.d-card-body .highlight { color: #fff; font-weight: 500; }
.d-footer {
text-align: center; margin-top: 40px;
font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem;
color: rgba(255,255,255,0.25); letter-spacing: 1px;
}
.d-footer a { color: rgba(230,21,135,0.6); text-decoration: none; }
.d-footer a:hover { color: #e61587; }
@media (max-width: 500px) {
.dedications-header h1 { font-size: 1.5rem; }
.d-card { padding: 18px 20px; }
}
</style>
</head>
<body>
<canvas id="particle-canvas"></canvas>
<header>
<div style="display: flex; align-items: center; gap: 15px;">
<img src="https://cdn.jsdelivr.net/gh/gamebackup/gamebackup.github.io@main/images/Cat-looks-inside-meme.png">
<div class="glitch-title" data-text="x3e // dedications">
x3e // dedications
</div>
</div>
<div style="display: flex; align-items: center; gap: 15px; margin-left: auto;">
<nav>
<a href="/">Home</a>
<a href="https://forms.gle/4qtsrTs18sW5equ9A" target="_blank">Game Request</a>
<a href="https://forms.gle/TPk7ZofJveGqhbXs6" target="_blank">Blocked/Bug Report</a>
</nav>
</div>
</header>
<div class="dedications-wrap">
<div class="dedications-header">
<h1 data-text="Dedications">Dedications</h1>
<div class="dedications-sub">x3e // compound creations</div>
</div>
<div class="d-card">
<div class="d-card-title">Site Idea</div>
<p class="d-card-body">Me</p>
</div>
<div class="d-card">
<div class="d-card-title">Moral Support</div>
<p class="d-card-body">Freeze Rat</p>
</div>
<div class="d-card">
<div class="d-card-title">Programming Help during Site Migration</div>
<p class="d-card-body">"An Anonymous Cyber Puppygirl <3"</p>
</div>
<div class="d-card">
<div class="d-card-title">Complex Games</div>
<p class="d-card-body">National Porting Association <span style="color:rgba(255,255,255,0.4)">(npa.lol)</span></p>
</div>
<div class="d-card">
<div class="d-card-title">Honorable Mentions</div>
<p class="d-card-body">Ublock Origin, YouTube Tutorials, and my friends</p>
</div>
<div class="d-card">
<div class="d-card-title">Bug Finders</div>
<p class="d-card-body">Dalton</p>
</div>
<div class="d-footer">
<a href="/">← back to x3e</a>
</div>
</div>
<div style="text-align: center; padding: 5px; font-size: 14px; color: #888; position: relative; z-index: 1;">
© COMPOUND//CREATIONS 2025
</div>
<div style="text-align: center; font-size: 10px; color: #666; padding-bottom: 20px; position: relative; z-index: 1;">
All games featured on this site are the property of their respective copyright holders. This site is a fan-made, non-commercial site intended for educational and entertainment use.
</div>
<script>
const canvas = document.getElementById('particle-canvas');
const ctx = canvas.getContext('2d');
let particles = [];
function resizeCanvas() { canvas.width = window.innerWidth; canvas.height = window.innerHeight; }
resizeCanvas();
window.addEventListener('resize', resizeCanvas);
class Particle {
constructor() { this.reset(); }
reset() {
this.x = Math.random() * canvas.width;
this.y = Math.random() * canvas.height;
this.size = Math.random() * 1.5 + 0.3;
this.speedX = (Math.random() - 0.5) * 0.4;
this.speedY = -Math.random() * 0.6 - 0.1;
this.life = 1;
this.decay = Math.random() * 0.003 + 0.001;
this.hue = Math.random() < 0.7 ? 320 : 185;
}
update() {
this.x += this.speedX; this.y += this.speedY; this.life -= this.decay;
if (this.life <= 0) this.reset();
}
draw() {
ctx.save();
ctx.globalAlpha = this.life * 0.8;
ctx.fillStyle = 'hsl(' + this.hue + ', 100%, 65%)';
ctx.shadowColor = 'hsl(' + this.hue + ', 100%, 65%)';
ctx.shadowBlur = 6;
ctx.beginPath();
ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);
ctx.fill();
ctx.restore();
}
}
for (let i = 0; i < 200; i++) { const p = new Particle(); p.life = Math.random(); particles.push(p); }
function animateParticles() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
particles.forEach(p => { p.update(); p.draw(); });
requestAnimationFrame(animateParticles);
}
animateParticles();
</script>
</body>
</html>