-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimagent.html
More file actions
490 lines (425 loc) · 15.8 KB
/
Copy pathanimagent.html
File metadata and controls
490 lines (425 loc) · 15.8 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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ANIMAGENT - Retro Animation Studio</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=VT323&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #000;
font-family: 'Orbitron', monospace;
color: #00ff00;
overflow-x: hidden;
position: relative;
}
/* Matrix rain effect */
.matrix-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.1;
}
/* Glitch effect */
.glitch {
position: relative;
animation: glitch 2s infinite;
}
@keyframes glitch {
0%, 100% { transform: translate(0); }
20% { transform: translate(-2px, 2px); }
40% { transform: translate(-2px, -2px); }
60% { transform: translate(2px, 2px); }
80% { transform: translate(2px, -2px); }
}
/* Main container */
.container {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
position: relative;
}
/* Header */
.header {
text-align: center;
margin-bottom: 50px;
z-index: 10;
}
.logo {
font-size: 4rem;
font-weight: 900;
text-shadow:
0 0 10px #00ff00,
0 0 20px #00ff00,
0 0 30px #00ff00,
0 0 40px #00ff00;
animation: pulse 2s infinite;
margin-bottom: 20px;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.8; }
}
.tagline {
font-size: 1.5rem;
color: #00ffff;
text-shadow: 0 0 10px #00ffff;
animation: fadeInUp 2s ease-out;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Navigation */
.nav {
display: flex;
gap: 30px;
margin: 40px 0;
flex-wrap: wrap;
justify-content: center;
}
.nav-btn {
background: linear-gradient(45deg, #00ff00, #00ffff);
border: none;
padding: 15px 30px;
font-family: 'Orbitron', monospace;
font-size: 1.1rem;
font-weight: 700;
color: #000;
cursor: pointer;
border-radius: 5px;
text-transform: uppercase;
letter-spacing: 2px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.nav-btn:hover {
transform: scale(1.1);
box-shadow:
0 0 20px #00ff00,
0 0 40px #00ff00;
}
.nav-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
transition: left 0.5s;
}
.nav-btn:hover::before {
left: 100%;
}
/* Main content */
.main-content {
text-align: center;
max-width: 800px;
margin: 40px auto;
}
.section {
margin: 60px 0;
padding: 30px;
border: 2px solid #00ff00;
border-radius: 10px;
background: rgba(0, 255, 0, 0.05);
backdrop-filter: blur(10px);
animation: slideIn 1s ease-out;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateX(-50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.section h2 {
font-size: 2.5rem;
margin-bottom: 20px;
color: #00ffff;
text-shadow: 0 0 15px #00ffff;
}
.section p {
font-size: 1.2rem;
line-height: 1.6;
margin-bottom: 20px;
color: #00ff00;
}
/* Floating elements */
.floating-element {
position: absolute;
font-size: 2rem;
color: #00ff00;
animation: float 6s ease-in-out infinite;
opacity: 0.3;
}
.floating-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.floating-element:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
.floating-element:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 3s; }
@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-20px) rotate(180deg); }
}
/* Retro grid */
.retro-grid {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
linear-gradient(rgba(0,255,0,0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,255,0,0.1) 1px, transparent 1px);
background-size: 50px 50px;
z-index: -1;
animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
0% { transform: translate(0, 0); }
100% { transform: translate(50px, 50px); }
}
/* CTA Button */
.cta-btn {
background: linear-gradient(45deg, #ff00ff, #00ffff);
border: none;
padding: 20px 40px;
font-family: 'Orbitron', monospace;
font-size: 1.5rem;
font-weight: 900;
color: #000;
cursor: pointer;
border-radius: 10px;
text-transform: uppercase;
letter-spacing: 3px;
margin: 40px 0;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.cta-btn:hover {
transform: scale(1.1);
box-shadow:
0 0 30px #ff00ff,
0 0 60px #00ffff;
}
/* Responsive */
@media (max-width: 768px) {
.logo {
font-size: 2.5rem;
}
.nav {
flex-direction: column;
align-items: center;
}
.nav-btn {
width: 200px;
}
.section h2 {
font-size: 2rem;
}
}
/* Loading animation */
.loading {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
animation: fadeOut 3s ease-out forwards;
}
@keyframes fadeOut {
0% { opacity: 1; }
80% { opacity: 1; }
100% { opacity: 0; visibility: hidden; }
}
.loading-text {
font-size: 2rem;
color: #00ff00;
animation: loadingPulse 1s infinite;
}
@keyframes loadingPulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}
</style>
</head>
<body>
<!-- Loading Screen -->
<div class="loading">
<div class="loading-text">INITIALIZING ANIMAGENT...</div>
</div>
<!-- Background Elements -->
<div class="retro-grid"></div>
<canvas class="matrix-bg" id="matrixCanvas"></canvas>
<!-- Floating Elements -->
<div class="floating-element">⚡</div>
<div class="floating-element">🎮</div>
<div class="floating-element">💾</div>
<div class="floating-element">🔮</div>
<!-- Main Container -->
<div class="container">
<!-- Header -->
<div class="header">
<h1 class="logo glitch">ANIMAGENT</h1>
<p class="tagline">WHERE RETRO MEETS THE FUTURE</p>
</div>
<!-- Navigation -->
<nav class="nav">
<button class="nav-btn">HOME</button>
<button class="nav-btn">PROJECTS</button>
<button class="nav-btn">ABOUT</button>
<button class="nav-btn">CONTACT</button>
</nav>
<!-- Main Content -->
<div class="main-content">
<div class="section">
<h2>WELCOME TO THE MATRIX</h2>
<p>Step into the world of ANIMAGENT, where we blend the nostalgic charm of 2000s animation with cutting-edge technology. Our retro-futuristic approach creates experiences that transport you back to the golden age of digital art.</p>
<p>From pixel-perfect animations to cyberpunk aesthetics, we bring your wildest retro dreams to life.</p>
</div>
<div class="section">
<h2>OUR MISSION</h2>
<p>To revolutionize the animation industry by combining the best of old-school techniques with modern innovation. We believe that the future of animation lies in honoring its past while pushing the boundaries of what's possible.</p>
<p>Every project we create is a love letter to the 2000s era, reimagined for the digital age.</p>
</div>
<div class="section">
<h2>FEATURES</h2>
<p>✨ Retro Animation Techniques</p>
<p>🎨 Cyberpunk Visual Design</p>
<p>⚡ High-Performance Rendering</p>
<p>🔮 AI-Powered Creativity</p>
<p>💾 Classic Gaming Aesthetics</p>
</div>
<button class="cta-btn">START YOUR JOURNEY</button>
</div>
</div>
<script>
// Matrix rain effect
const canvas = document.getElementById('matrixCanvas');
const ctx = canvas.getContext('2d');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
const matrix = "ABCDEFGHIJKLMNOPQRSTUVWXYZ123456789@#$%^&*()*&^%+-/~{[|`]}";
const matrixArray = matrix.split("");
const fontSize = 10;
const columns = canvas.width / fontSize;
const drops = [];
for (let x = 0; x < columns; x++) {
drops[x] = 1;
}
function drawMatrix() {
ctx.fillStyle = 'rgba(0, 0, 0, 0.04)';
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = '#0F0';
ctx.font = fontSize + 'px monospace';
for (let i = 0; i < drops.length; i++) {
const text = matrixArray[Math.floor(Math.random() * matrixArray.length)];
ctx.fillText(text, i * fontSize, drops[i] * fontSize);
if (drops[i] * fontSize > canvas.height && Math.random() > 0.975) {
drops[i] = 0;
}
drops[i]++;
}
}
// Interactive elements
document.addEventListener('DOMContentLoaded', function() {
// Matrix animation
setInterval(drawMatrix, 50);
// Button interactions
const buttons = document.querySelectorAll('.nav-btn, .cta-btn');
buttons.forEach(button => {
button.addEventListener('click', function() {
// Add click effect
this.style.transform = 'scale(0.95)';
setTimeout(() => {
this.style.transform = '';
}, 150);
// Add glitch effect
this.classList.add('glitch');
setTimeout(() => {
this.classList.remove('glitch');
}, 500);
});
});
// Parallax effect for floating elements
document.addEventListener('mousemove', function(e) {
const floatingElements = document.querySelectorAll('.floating-element');
const mouseX = e.clientX / window.innerWidth;
const mouseY = e.clientY / window.innerHeight;
floatingElements.forEach((element, index) => {
const speed = (index + 1) * 0.5;
const x = (mouseX - 0.5) * speed * 20;
const y = (mouseY - 0.5) * speed * 20;
element.style.transform = `translate(${x}px, ${y}px)`;
});
});
// Typing effect for tagline
const tagline = document.querySelector('.tagline');
const originalText = tagline.textContent;
tagline.textContent = '';
let i = 0;
const typeWriter = () => {
if (i < originalText.length) {
tagline.textContent += originalText.charAt(i);
i++;
setTimeout(typeWriter, 100);
}
};
setTimeout(typeWriter, 2000);
});
// Resize handler
window.addEventListener('resize', function() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
});
// Add some retro sound effects (visual only)
function addRetroEffect() {
const effect = document.createElement('div');
effect.style.position = 'fixed';
effect.style.top = '0';
effect.style.left = '0';
effect.style.width = '100%';
effect.style.height = '100%';
effect.style.background = 'linear-gradient(45deg, transparent 49%, rgba(0,255,0,0.1) 50%, transparent 51%)';
effect.style.backgroundSize = '4px 4px';
effect.style.pointerEvents = 'none';
effect.style.zIndex = '999';
effect.style.animation = 'fadeOut 0.5s ease-out forwards';
document.body.appendChild(effect);
setTimeout(() => {
document.body.removeChild(effect);
}, 500);
}
// Add retro effect on key press
document.addEventListener('keydown', addRetroEffect);
</script>
</body>
</html>