-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWarFrame.html
More file actions
588 lines (522 loc) · 24.9 KB
/
Copy pathWarFrame.html
File metadata and controls
588 lines (522 loc) · 24.9 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
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Warframe - System Requirements</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
<style>
/* Universal box-sizing for consistent layout */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body and HTML root element styles */
body, html {
height: 100%; /* Full height for video background */
font-family: 'Inter', sans-serif; /* Primary font */
scroll-behavior: smooth; /* Smooth scrolling for anchors */
overflow-x: hidden; /* Prevent horizontal scrollbar */
background-color: #0c0c1a; /* Fallback background color for Warframe theme (dark blue/purple) */
}
/* Background Video Styles */
.video-bg {
position: fixed; /* Fixed position to cover the viewport */
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover; /* Cover the entire area without distortion */
z-index: -1; /* Place behind other content */
filter: brightness(0.3); /* Darken the video for better text readability */
transition: filter 0.5s ease; /* Smooth transition for brightness changes */
}
/* Main Container Styles */
.container {
max-width: 1000px; /* Max width for content */
margin: 20px auto; /* Center the container with some top/bottom margin */
padding: 40px 20px; /* Internal padding */
background: rgba(15, 15, 30, 0.9); /* Semi-transparent dark blue/purple background */
border-radius: 15px; /* Rounded corners */
backdrop-filter: blur(10px); /* Frosted glass effect */
box-shadow: 0 0 30px rgba(0, 0, 0, 0.7); /* Stronger shadow for depth */
color: #e0e0f0; /* Light text color */
animation: fadeIn 1.5s ease; /* Fade-in animation on load */
position: relative; /* For z-index context */
overflow: hidden; /* Hide overflowing content, especially for parallax */
border: 1px solid #2a2a4a; /* Subtle border */
}
/* Fade-in Animation Keyframes */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Heading Styles */
h1, h2 {
text-align: center;
margin-bottom: 20px;
color: #00e6e6; /* Cyan/Aqua for main titles (Warframe theme) */
text-shadow: 0 0 10px rgba(0, 230, 230, 0.5); /* Cyan glow */
}
h1 { font-size: 2.5em; }
h2 {
color: #66b3ff; /* Lighter blue for section titles */
margin-top: 40px;
border-bottom: 2px solid #66b3ff; /* Blue separator line */
padding-bottom: 10px;
}
/* Game Info Section */
.game-info {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 30px;
background: rgba(25, 25, 40, 0.7); /* Semi-transparent background */
border-radius: 10px;
padding: 15px;
position: relative;
z-index: 1; /* Ensure it's above parallax elements */
}
.game-info img {
width: 90px;
height: 90px;
border-radius: 10px;
object-fit: contain; /* Ensure logo fits without cropping */
}
/* Specifications Section Layout */
.specs-section {
display: flex;
flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
gap: 20px; /* Space between spec cards */
justify-content: center; /* Center cards horizontally */
}
/* Individual Specification Card */
.spec-card {
background-color: rgba(20, 20, 35, 0.8); /* Semi-transparent dark background */
padding: 20px;
border-radius: 10px;
flex: 1; /* Allow cards to grow and shrink */
min-width: 280px; /* Minimum width before wrapping */
transition: all 0.3s ease; /* Smooth hover effects */
box-shadow: 0 0 15px rgba(0,0,0,0.4); /* Subtle shadow */
position: relative;
overflow: hidden;
z-index: 1;
border-left: 4px solid #00e6e6; /* Cyan border on the left */
}
/* Pseudo-element for hover glow effect */
.spec-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(0,230,230,0.1) 0%, rgba(102,179,255,0) 70%); /* Cyan/Blue glow */
z-index: -1;
opacity: 0;
transition: opacity 0.5s;
}
/* Hover effects for spec cards */
.spec-card:hover {
transform: translateY(-5px); /* Lift card on hover */
background-color: rgba(30, 30, 50, 0.9); /* Slightly brighter on hover */
box-shadow: 0 0 25px rgba(0,230,230,0.3); /* Enhanced shadow with accent color */
}
.spec-card:hover::before {
opacity: 1; /* Show glow on hover */
}
.spec-card h4 {
color: #ffffff; /* White heading text */
margin-bottom: 15px;
border-bottom: 1px solid #888888; /* Separator line */
padding-bottom: 8px;
}
.spec-item {
display: flex;
justify-content: space-between; /* Space out label and value */
margin: 12px 0;
color: #dddddd; /* Lighter grey for text */
padding-bottom: 8px;
border-bottom: 1px dashed #666666;
}
/* Interactive Section Styles */
.calculator, .modding-simulator, .resource-estimator, .faction-tracker, .scanner {
margin-top: 30px;
background: rgba(25, 25, 40, 0.7);
border-radius: 10px;
padding: 25px;
border: 1px solid #3a3a5a;
box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
.calculator select, .calculator button,
.modding-simulator select, .modding-simulator input, .modding-simulator button,
.resource-estimator select, .resource-estimator input, .resource-estimator button,
.faction-tracker select, .faction-tracker input, .faction-tracker button,
.scanner select, .scanner button, .scanner input {
width: 100%;
padding: 12px;
margin-bottom: 15px;
background: rgba(35, 35, 50, 0.9);
color: white;
border: 1px solid #777799;
border-radius: 5px;
font-family: 'Inter', sans-serif;
}
/* Button Styles */
button {
background: linear-gradient(135deg, #00e6e6, #00b3b3) !important; /* Warframe Cyan gradient */
color: white !important;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
border: none !important;
border-radius: 5px;
}
button:hover {
background: linear-gradient(135deg, #00b3b3, #00e6e6) !important;
transform: translateY(-2px);
box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
/* Result Box Styles */
.result-box {
padding: 15px;
background: rgba(35, 35, 50, 0.9);
border-radius: 8px;
margin-top: 15px;
border-left: 4px solid #00e6e6; /* Cyan accent border */
}
/* Progress Bar for Stats */
.progress-bar {
height: 15px;
background: #444466;
border-radius: 7px;
margin-top: 5px;
margin-bottom: 5px;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #00e6e6, #00b3b3); /* Cyan gradient */
border-radius: 7px;
}
.progress-fill.red {
background: linear-gradient(90deg, #ff6666, #cc0000); /* Red for negative/threat */
}
.progress-fill.green {
background: linear-gradient(90deg, #66ff66, #00cc00); /* Green for positive */
}
/* Modding Simulator specific styles */
#moddingResult {
font-size: 1.1em;
font-weight: bold;
}
#moddingResult.prime { color: #ffff66; } /* Gold for Prime */
#moddingResult.optimal { color: #00e6e6; } /* Cyan for Optimal */
#moddingResult.good { color: #66b3ff; } /* Blue for Good */
#moddingResult.basic { color: #aaaaaa; } /* Grey for Basic */
/* Resource Estimator specific styles */
#resourceResult {
font-size: 1.1em;
font-weight: bold;
}
/* Faction Tracker specific styles */
#standingResult {
font-size: 1.1em;
font-weight: bold;
}
#standingResult .progress-fill {
background: linear-gradient(90deg, #9966ff, #6600ff); /* Purple for standing */
}
/* Scanner specific styles */
.scanner::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #00e6e6, #66b3ff); /* Cyan to Blue gradient */
}
.scan-bar {
height: 100%;
width: 0;
background: linear-gradient(90deg, #00e6e6, #66b3ff);
transition: width 1s;
}
.scan-result-value {
font-weight: bold;
color: #00e6e6; /* Cyan for positive scan results */
}
/* Tooltip styles */
.tooltip {
position: relative;
display: inline-block;
cursor: help;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 220px;
background-color: #333344;
color: #ffffff;
text-align: center;
border-radius: 6px;
padding: 8px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.3s;
font-size: 0.9em;
border: 1px solid #00e6e6; /* Warframe Cyan border */
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}
/* Parallax Elements (Font Awesome icons) */
.parallax-element {
position: absolute;
opacity: 0.08; /* Very subtle opacity */
z-index: -1; /* Behind content */
font-family: 'Font Awesome 6 Free'; /* Ensure Font Awesome is used for icons */
font-weight: 900; /* For solid icons */
pointer-events: none; /* Ensure elements don't interfere with clicks */
color: #00e6e6; /* Warframe cyan for icons */
}
/* Responsive Styles */
@media (max-width: 768px) {
.container {
padding: 20px;
margin: 10px auto;
}
h1 { font-size: 2em; }
h2 { font-size: 1.5em; }
.game-info { flex-direction: column; text-align: center; }
.spec-card { min-width: 100%; }
}
</style>
</head>
<body>
<video autoplay loop muted playsinline class="video-bg">
<source src="https://placehold.co/1920x1080/000000/FFFFFF?text=Warframe+Trailer" type="video/mp4" />
Your browser does not support the video tag.
</video>
<div class="parallax-element" id="parallax1" style="top: 15%; left: 8%; font-size: 3rem;"></div> <div class="parallax-element" id="parallax2" style="top: 70%; right: 10%; font-size: 3rem;"></div> <div class="parallax-element" id="parallax3" style="top: 40%; left: 15%; font-size: 2.5rem;"></div> <div class="parallax-element" id="parallax4" style="bottom: 10%; right: 15%; font-size: 2.5rem;"></div> <div class="container">
<h1><i class="fas fa-robot"></i> WARFRAME</h1>
<p style="text-align: center; font-size: 1.1em;">Become an unstoppable Tenno warrior. Is your rig ready for the Origin System?</p>
<div class="game-info">
<img src="https://placehold.co/90x90/003333/FFFFFF?text=WF" alt="Warframe Logo">
<div>
<h3>Warframe (Free-to-Play)</h3>
<p>Master your Warframe, explore the Origin System, and unleash its power.</p>
</div>
</div>
<h2>Minimum System Requirements</h2>
<div class="specs-section">
<div class="spec-card">
<h4>Processor</h4>
<div class="spec-item"><span>CPU:</span><span>Intel Core i7-920 (2.66 GHz) / AMD Phenom II X4 955 (3.2 GHz)</span></div>
<div class="spec-item"><span>Cores:</span><span>Quad-core</span></div>
</div>
<div class="spec-card">
<h4>Memory & Storage</h4>
<div class="spec-item"><span>RAM:</span><span>4 GB</span></div>
<div class="spec-item"><span>Storage:</span><span>50 GB HDD</span></div>
</div>
<div class="spec-card">
<h4>Graphics & OS</h4>
<div class="spec-item"><span>GPU:</span><span>NVIDIA GeForce GTX 550 Ti / AMD Radeon HD 6850 (1GB VRAM)</span></div>
<div class="spec-item"><span>DirectX:</span><span>Version 11</span></div>
<div class="spec-item"><span>OS:</span><span>Windows 7/8/10 (64-bit)</span></div>
</div>
</div>
<h2>Recommended System Requirements</h2>
<div class="specs-section">
<div class="spec-card">
<h4>Processor</h4>
<div class="spec-item"><span>CPU:</span><span>Intel Core i7-4790K (4.0 GHz) / AMD Ryzen 5 1600 (3.2 GHz)</span></div>
<div class="spec-item"><span>Cores:</span><span>Quad-core or higher</span></div>
</div>
<div class="spec-card">
<h4>Memory & Storage</h4>
<div class="spec-item"><span>RAM:</span><span>8 GB</span></div>
<div class="spec-item"><span>Storage:</span><span>50 GB SSD</span></div>
</div>
<div class="spec-card">
<h4>Graphics & OS</h4>
<div class="spec-item"><span>GPU:</span><span>NVIDIA GeForce GTX 1060 (6GB) / AMD Radeon RX 570 (8GB)</span></div>
<div class="spec-item"><span>DirectX:</span><span>Version 11</span></div>
<div class="spec-item"><span>OS:</span><span>Windows 10 (64-bit)</span></div>
</div>
</div>
<h2>High/Prime Settings (144FPS+)</h2>
<div class="specs-section">
<div class="spec-card">
<h4>Processor</h4>
<div class="spec-item"><span>CPU:</span><span>Intel Core i7-9700K (3.6 GHz) / AMD Ryzen 7 3700X (3.6 GHz)</span></div>
<div class="spec-item"><span>Cores:</span><span>8 Cores</span></div>
</div>
<div class="spec-card">
<h4>Memory & Storage</h4>
<div class="spec-item"><span>RAM:</span><span>16 GB</span></div>
<div class="spec-item"><span>Storage:</span><span>50 GB NVMe SSD</span></div>
</div>
<div class="spec-card">
<h4>Graphics & OS</h4>
<div class="spec-item"><span>GPU:</span><span>NVIDIA GeForce RTX 2070 (8GB) / AMD Radeon RX 5700 XT (8GB)</span></div>
<div class="spec-item"><span>DirectX:</span><span>Version 11</span></div>
<div class="spec-item"><span>OS:</span><span>Windows 10/11 (64-bit)</span></div>
</div>
</div>
<div class="calculator">
<h3><i class="fas fa-rocket"></i> Tenno Performance Estimator</h3>
<p>Estimate your FPS during intense missions and open-world exploration!</p>
<select id="wfCPU">
<option value="low">Low-end Tenno (i7-920 / Phenom II)</option>
<option value="mid" selected>Mid-tier Warframe (i7-4790K / Ryzen 5)</option>
<option value="high">High-tier Prime (i7-9700K / Ryzen 7)</option>
</select>
<select id="wfGPU">
<option value="low">Low-end GPU (GTX 550 Ti / HD 6850)</option>
<option value="mid" selected>Mid-tier GPU (GTX 1060 / RX 570)</option>
<option value="high">High-tier GPU (RTX 2070 / RX 5700 XT)</option>
</select>
<select id="wfRes">
<option value="1080">1080p</option>
<option value="1440">1440p</option>
<option value="4k">4K</option>
</select>
<select id="wfSettings">
<option value="low">Low (Performance)</option>
<option value="medium" selected>Medium (Balanced)</option>
<option value="high">High (Enhanced)</option>
<option value="max">Max (Gorgeous)</option>
</select>
<button onclick="calculateWarframeFPS()">Calculate Tenno Power!</button>
<div id="warframeFPSResult" class="result-box"></div>
</div>
<div class="modding-simulator">
<h3><i class="fas fa-gem"></i> Modding Efficiency Simulator</h3>
<p>Optimize your Warframe's power with the right mods.</p>
<label for="warframeType">Warframe Type:</label>
<select id="warframeType">
<option value="tank">Tank (e.g., Rhino, Nidus)</option>
<option value="caster" selected>Caster (e.g., Saryn, Ember)</option>
<option value="support">Support (e.g., Trinity, Wisp)</option>
<option value="stealth">Stealth (e.g., Ash, Ivara)</option>
</select>
<label for="modRarity">Average Mod Rarity:</label>
<select id="modRarity">
<option value="common">Common</option>
<option value="uncommon">Uncommon</option>
<option value="rare" selected>Rare</option>
<option value="prime">Prime/Legendary</option>
</select>
<label for="modSlots">Mod Slots Used (8-10):</label>
<input type="number" id="modSlots" value="8" min="8" max="10">
<button onclick="simulateModdingEfficiency()">Assess Modding!</button>
<div id="moddingResult" class="result-box"></div>
</div>
<div class="resource-estimator">
<h3><i class="fas fa-cubes"></i> Resource Gathering Estimator</h3>
<p>Estimate resource gains from your next mission.</p>
<label for="missionType">Mission Type:</label>
<select id="missionType">
<option value="exterminate">Exterminate</option>
<option value="survival" selected>Survival</option>
<option value="defense">Defense</option>
<option value="bounty">Open World Bounty</option>
</select>
<label for="resourceBooster">Resource Booster Active?</label>
<select id="resourceBooster">
<option value="no" selected>No</option>
<option value="yes">Yes</option>
</select>
<label for="squadSize">Squad Size:</label>
<select id="squadSize">
<option value="1">Solo</option>
<option value="2">Duo</option>
<option value="3">Trio</option>
<option value="4" selected>Full Squad</option>
</select>
<button onclick="estimateResourceGathering()">Estimate Yield!</button>
<div id="resourceResult" class="result-box"></div>
</div>
<div class="faction-tracker">
<h3><i class="fas fa-handshake"></i> Faction Standing Tracker</h3>
<p>Track your reputation progress with various factions.</p>
<label for="factionName">Select Faction:</label>
<select id="factionName">
<option value="ostron">Ostron (Cetus)</option>
<option value="solaris">Solaris United (Fortuna)</option>
<option value="entrati">Entrati (Deimos)</option>
<option value="syndicate">Syndicate (Arbiters, Cephalon Suda, etc.)</option>
</select>
<label for="dailyCapReached">Daily Cap Reached?</label>
<select id="dailyCapReached">
<option value="no" selected>No</option>
<option value="yes">Yes</option>
</select>
<label for="missionsCompleted">Missions Completed (for standing):</label>
<input type="number" id="missionsCompleted" value="3" min="0" max="10">
<button onclick="trackFactionStanding()">Update Standing!</button>
<div id="standingResult" class="result-box">
<p>Estimated Standing Gain: <span id="standingGainDisplay">0</span></p>
<p>Next Rank Progress: <span id="rankProgressDisplay">0%</span></p>
<div class="progress-bar"><div class="progress-fill" style="width: 0%;"></div></div>
</div>
</div>
<div class="scanner">
<h3>System Compatibility Scanner</h3>
<p>Scan your system to see if you can traverse the Origin System!</p>
<button id="startScan" class="button" style="width: 100%;">Start System Scan</button>
<div class="scan-progress">
<div class="scan-bar" id="scanBar"></div>
</div>
<div class="scan-results" id="scanResults">
<h4>Scan Results:</h4>
<div class="scan-result-item">
<span class="scan-result-label">CPU Performance:</span>
<span class="scan-result-value" id="cpuResult">-</span>
</div>
<div class="scan-result-item">
<span class="scan-result-label">GPU Performance:</span>
<span class="scan-result-value" id="gpuResult">-</span>
</div>
<div class="scan-result-item">
<span class="scan-result-label">RAM:</span>
<span class="scan-result-value" id="ramResult">-</span>
</div>
<div class="scan-result-item">
<span class="scan-result-label">Storage:</span>
<span class="scan-result-value" id="storageResult">-</span>
</div>
<div class="scan-result-item">
<span class="scan-result-label">Overall Rating:</span>
<span class="scan-result-value" id="overallResult">-</span>
</div>
</div>
</div>
<div class="center-text">
<a href="https://www.warframe.com/" target="_blank" class="button">Visit Official Warframe Website</a>
<a href="https://store.steampowered.com/app/230410/Warframe/" class="button" style="margin-left: 10px; background-color: #66b3ff;">Get on Steam</a>
</div>
<footer>
<p>© 2025 Digital Extremes Ltd. All Rights Reserved. Warframe and the Warframe logo are trademarks of Digital Extremes Ltd.</p>
<div class="social-icons">
<a href="https://discord.com/invite/warframe" target="_blank"><i class="fab fa-discord"></i></a>
<a href="https://twitter.com/PlayWarframe" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.youtube.com/embed/sYJj-g3n0mQ?autoplay=0&mute=1" target="_blank"><i class="fab fa-youtube"></i></a>
<a href="https://www.twitch.tv/directory/game/Warframe" target="_blank"><i class="fab fa-twitch"></i></a>
<a href="https://www.reddit.com/r/Warframe/" target="_blank"><i class="fab fa-reddit"></i></a>
</div>
</footer>
</div>
<script src="warframe_script.js"></script>
</body>
</html>