-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
631 lines (593 loc) · 26.9 KB
/
index.html
File metadata and controls
631 lines (593 loc) · 26.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
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="SpeedPix Pro — Sublimation auto-resize and Photoshop automation. Batch resize, smart-object paste, fast exports for apparel mockups." />
<meta name="keywords" content="sublimation, photoshop automation, batch resize, apparel mockups, design tools" />
<meta name="author" content="SpeedPix Team" />
<meta name="google-site-verification" content="googlec1de389aa37f4108" />
<title>SpeedPix Pro — Sublimation Auto Resize</title>
<link rel="icon" type="image/png" href="https://raw.githubusercontent.com/CodeNinja-X/SpeedPix-Releases/main/favicon.png" />
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
/* --- Base layout: single-screen, no scroll --- */
html, body {
height: 100%;
margin: 0;
overflow: hidden;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
background: #111124;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
* { box-sizing: border-box; }
/* --- Enhanced lighter liquid glow from bottom --- */
body {
background: #111124;
position: relative;
z-index: 0;
will-change: transform;
}
body::before, body::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2; /* Behind 3D effect */
opacity: 0.2;
}
body::before {
background: radial-gradient(circle at 50% 100%, rgb(51 0 255) 0%, transparent 80%);
animation: liquidFlow1 16s ease-in-out infinite;
}
body::after {
background: radial-gradient(circle at 50% 100%, rgba(167, 243, 208, 0.45) 0%, transparent 80%);
animation: liquidFlow2 20s ease-in-out infinite;
}
@keyframes liquidFlow1 {
0% { transform: translate(0, 0) scale(1); opacity: 0.2; }
50% { transform: translate(3%, 2%) scale(1.03); opacity: 0.3; }
100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
}
@keyframes liquidFlow2 {
0% { transform: translate(0, 0) scale(1); opacity: 0.2; }
50% { transform: translate(-3%, -2%) scale(1.04); opacity: 0.28; }
100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
}
/* --- 3D Fabric Wave Background --- */
#vanta-bg {
position: absolute;
opacity: 40%;
top: -10px;
left: 0px;
width: 100vw; /* full viewport width */
height: 100vh; /* full viewport height */
z-index: -1; /* Between glow and card */
}
/* Fallback for mobile or unsupported devices */
@media (max-width: 640px) or (pointer: coarse) {
#vanta-bg {
background: url('https://images.unsplash.com/photo-1551489188-e0965926f5f0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
background-size: cover;
}
}
/* --- Card (clean glass effect without emboss) --- */
.card {
width: min(1300px, 90%);
max-height: 88vh;
border-radius: 24px;
background: linear-gradient(313deg, rgb(69 0 255 / 0%), rgb(255 255 255 / 0%));
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
box-shadow: 0 20px 60px rgba(2, 6, 23, 0.9);
border: 1px solid rgba(255, 255, 255, 0.3);
display: grid;
grid-template-columns: 1fr 460px;
gap: 80px;
padding: 50px;
align-items: center;
opacity: 0;
transform: translateY(24px);
transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.4s ease;
position: relative;
z-index: 1;
}
.card.visible { opacity: 1; transform: translateY(0); }
.card:hover { box-shadow: 0 25px 70px rgba(2,6,23,1); }
/* --- Left content --- */
/* SVG wordmark sizing */
.brand { margin: 0; line-height: 1; }
.brand svg {
display: block;
width: clamp(220px, 32vw, 520px); /* responsive: min..pref..max */
height: auto; /* keep aspect ratio */
}
/* optional: mobile tweak */
@media (max-width: 640px) {
.brand h1 svg { width: 260px; }
}
h1 {
margin: 0 0 10px;
font-size: 88px;
line-height: 1.05;
color: #f1f5f9;
font-weight: 800;
}
p.lead {
margin: 12px 0 40px;
color: #bebebe;
font-size: 16px;
line-height: 1.6;
max-width: 440px;
opacity: 1;
}
.features {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
margin-top: 16px;
}
.feature {
color: #bebebe;
background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
padding: 16px;
border-radius: 14px;
line-height: 25px;
font-size: 14px;
border: 1px solid rgba(255,255,255,0.25);
transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
position: relative;
overflow: hidden;
}
.feature::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 50% 50%, rgba(59,130,246,0.12) 0%, transparent 70%);
opacity: 0;
transition: opacity 0.4s ease;
}
.feature:hover::before { opacity: 1; }
.feature:hover {
transform: translateY(-6px);
box-shadow: 0 10px 20px rgba(2,6,23,0.5);
background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.1));
}
.feature strong {
display: block;
color: #ffffff;
margin-bottom: 10px;
font-weight: 600;
}
.cta-row {
display: flex;
gap: 16px;
margin-top: 28px;
align-items: center;
}
.btn {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 14px 24px;
border-radius: 14px;
border: 0;
cursor: pointer;
font-weight: 600;
font-size: 16px;
text-decoration: none;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
.btn.primary {
background: linear-gradient(135deg, #e80a4f, #e80a4f);
color: white;
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
}
.btn.primary::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 300%;
height: 300%;
background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
transform: translate(-50%, -50%) scale(0);
transition: transform 0.4s ease;
opacity: 0;
}
.btn.primary:hover::after { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.btn.primary:hover {
background: linear-gradient(135deg, #0c8fd0, #2563eb);
transform: translateY(-4px);
box-shadow: 0 14px 32px rgba(14,165,233,0.5);
}
.btn.primary:focus {
outline: 3px solid #60a5fa;
outline-offset: 3px;
}
.btn.primary.loading::after {
content: '';
display: inline-block;
width: 18px;
height: 18px;
border: 3px solid #fff;
border-top-color: transparent;
border-radius: 50%;
animation: spin 0.9s linear infinite;
}
.btn.secondary {
background: transparent;
border: 1px solid rgba(255,255,255,0.3);
color: #f1f5f9;
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
}
.btn.secondary:hover {
background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.1));
transform: translateY(-4px);
box-shadow: 0 10px 20px rgba(2,6,23,0.4);
}
.btn.secondary:focus {
outline: 3px solid #60a5fa;
outline-offset: 3px;
}
.meta {
margin-top: 30px;
color: #d1d9e6;
font-size: 14px;
opacity: 1;
}
/* --- Right panel --- */
.panel {
background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
padding: 24px;
border-radius: 16px;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
border: 1px solid rgba(255,255,255,0.3);
box-shadow: 0 12px 32px rgba(2,6,23,0.8);
transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.panel:hover { box-shadow: 0 18px 48px rgba(2,6,23,0.9); transform: translateY(-4px); }
.preview {
padding: 5%;
flex: 1;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.25);
transition: transform 0.4s ease;
}
.preview:hover { transform: scale(1.02); }
.preview svg {
max-width: 80%;
max-height: 80%;
object-fit: contain;
filter: drop-shadow(0 14px 36px rgba(3,7,18,0.9));
opacity: 0;
transform: scale(0.92);
transition: opacity 0.9s ease, transform 0.9s ease;
}
.preview svg.loaded { opacity: 1; transform: scale(1); }
.panel-footer {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 18px;
}
.small {
font-size: 14px;
color: #d1d9e6;
line-height: 1.45;
}
/* --- Footer badges --- */
.badges {
display: flex;
gap: 12px;
align-items: center;
}
.badge {
background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
padding: 10px 14px;
border-radius: 12px;
font-size: 14px;
border: 1px solid rgba(255,255,255,0.25);
transition: background 0.4s ease, transform 0.4s ease;
color:#ffffff;
}
.badge:hover {
background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.1));
transform: translateY(-3px);
background-color: rgb(22, 21, 22);
}
/* --- Animations --- */
@keyframes spin {
to { transform: rotate(360deg); }
}
/* --- Responsive adjustments --- */
@media (max-width: 980px) {
.card {
grid-template-columns: 1fr;
gap: 28px;
max-height: 92vh;
padding: 28px;
}
.preview { height: 380px; }
.panel { height: auto; padding: 20px; }
h1 { font-size: 34px; }
p.lead { font-size: 17px; }
}
@media (max-width: 640px) {
.card { padding: 24px; border-radius: 20px; }
h1 { font-size: 30px; }
.features { grid-template-columns: 1fr; gap: 14px; }
.cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
.btn { justify-content: center; padding: 12px 18px; font-size: 15px; }
.preview { height: 300px; }
.preview svg { width: 100%; height: auto; }
}
</style>
</head>
<body>
<!-- 3D Background Container -->
<div id="vanta-bg"></div>
<div class="card" role="main">
<div>
<div class="brand">
<div>
<div style="display:flex;align-items:center;gap:14px;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 450 78.01" width="220" height="38" role="img" aria-label="SpeedPix Logo">
<title>SpeedPix Logo</title>
<defs>
<style>.cls-1{fill:#e80a4f;}.cls-2{fill:#fff;}</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1">
<path class="cls-1" d="M132.46,0l-4,7.61c-5.06,9.7-14.07,15.61-23.78,15.61H78.34L90.45,0Z"/>
<polygon class="cls-1" points="78.34 15.78 66.23 39 24.22 39 36.33 15.78 78.34 15.78"/>
<polygon class="cls-1" points="108.24 39 96.13 62.23 54.12 62.23 66.23 39 108.24 39"/>
<path class="cls-1" d="M54.12,54.79,42,78H0L4,70.4C9,60.7,18,54.79,27.75,54.79Z"/>
<path class="cls-2" d="M186.76,19.57l-3.84,9.25H164.2a2,2,0,0,0-1.46.53,2.14,2.14,0,0,0-.51,1.53c0,.84.83,1.57,2.48,2.16a54.6,54.6,0,0,0,6.64,1.82,44.29,44.29,0,0,1,8.05,2.6q7.53,3.38,7.4,10.61A9.4,9.4,0,0,1,182.55,56a14.28,14.28,0,0,1-8.37,2.45h-24.5l3.84-9.25h20.66a2.62,2.62,0,0,0,1.55-.36,1,1,0,0,0,.39-.88,2.38,2.38,0,0,0-1.7-2.28,41,41,0,0,0-7.55-2.14A39.13,39.13,0,0,1,158,40.69q-6.4-3-6.43-9.81a10.32,10.32,0,0,1,4-8.4,13.28,13.28,0,0,1,8.67-2.91Z"/>
<path class="cls-2" d="M200.3,58.44H189.6V19.57h25a13.57,13.57,0,0,1,10,4.1,13.41,13.41,0,0,1,3.82,9.74,13.37,13.37,0,0,1-3.82,9.71,13.53,13.53,0,0,1-10,4.1H200.74L205.35,38h9.23a2.74,2.74,0,0,0,1.94-.87,5.66,5.66,0,0,0,1.17-3.69,5.71,5.71,0,0,0-1.17-3.72,2.74,2.74,0,0,0-1.94-.87H200.3Z"/>
<path class="cls-2" d="M242.26,28.82V58.44H231.55V19.57h35.57l-3.83,9.25Zm24.62,20.37L263,58.44H242.77l4.69-9.25ZM246.61,34.38h20.54l-3.84,9.25H243Z"/>
<path class="cls-2" d="M280.28,28.82V58.44H269.57V19.57h35.58l-3.84,9.25ZM304.9,49.19l-3.83,9.25H280.79l4.69-9.25ZM284.63,34.38h20.54l-3.84,9.25H281Z"/>
<path class="cls-2" d="M318.3,28.82V58.44H307.6V19.57h20.17a19.7,19.7,0,0,1,14.5,6A18.34,18.34,0,0,1,347.93,39a18.44,18.44,0,0,1-5.64,13.48,19.76,19.76,0,0,1-14.52,6h-9l4.69-9.25h4.27a8.69,8.69,0,0,0,6.39-2.74A10.11,10.11,0,0,0,337.22,39a10.15,10.15,0,0,0-3-7.45,8.83,8.83,0,0,0-6.41-2.72Z"/>
<path class="cls-1" d="M362,58.44h-10.7V19.57h25a13.57,13.57,0,0,1,10,4.1,13.41,13.41,0,0,1,3.82,9.74,13.37,13.37,0,0,1-3.82,9.71,13.53,13.53,0,0,1-10,4.1H362.47L367.08,38h9.23a2.74,2.74,0,0,0,1.94-.87,5.66,5.66,0,0,0,1.17-3.69,5.71,5.71,0,0,0-1.17-3.72,2.74,2.74,0,0,0-1.94-.87H362Z"/>
<path class="cls-1" d="M405.69,58.44H395V19.57h10.71Z"/>
<path class="cls-1" d="M437.4,19.57H450L436.09,39,450,58.44H437.4l-7.63-10.63-7.59,10.63H409.57L423.49,39,409.57,19.57h12.61l7.59,10.63Z"/>
</g>
</g>
</svg>
</div>
<p class="lead">Revolutionize your sublimation workflow with advanced Photoshop automation: seamless batch resizing</p>
</div>
</div>
<div class="features">
<div class="feature"><strong>Auto Resize</strong>Effortlessly scale PSD mockups using intuitive size keywords (S, M, L, XL) for precise, automated adjustments.</div>
<div class="feature"><strong>Smart Objects</strong>Seamlessly copy and paste design groups into template Smart Objects with unmatched reliability and precision.</div>
<div class="feature"><strong>Batch Rename</strong>Efficiently rename hundreds of PSD files using customizable CSV rules and dynamic templates.</div>
<div class="feature"><strong>Fast Export</strong>Export in multiple color modes and formats with a single click, optimizing your production pipeline.</div>
</div>
<div class="cta-row">
<a class="btn primary" href="#download" id="downloadBtn">Download (.exe)</a>
<a class="btn secondary" href="#github" id="repoBtn">View on GitHub</a>
</div>
<div class="meta">Compatible</div>
<div style="margin-top:24px;display:flex;gap:16px;align-items:center;flex-wrap:wrap">
<div class="badges">
<div class="badge">Windows</div>
<div class="badge">Photoshop</div>
<div class="badge">Batch</div>
</div>
<div style="margin-left:auto" class="small">macOS Coming Soon</div>
</div>
</div>
<aside class="panel">
<div class="preview" aria-hidden="true">
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="390px"
height="500px"
viewBox="0 0 390 500"
preserveAspectRatio="xMidYMid meet"
class="loaded"
id="previewSvg"
>
<path fill-rule="evenodd" stroke="rgb(135 135 135)" stroke-width="2px" stroke-linecap="butt" stroke-linejoin="miter" fill="rgb(25 30 41)"
d="M384.614,496.167 C257.354,495.889 130.055,495.611 2.795,495.334 C2.795,427.022 2.795,358.689 2.795,290.377 C2.795,269.711 4.386,205.395 4.386,205.395 C4.386,205.395 62.013,180.085 28.250,36.264 C62.186,25.156 96.132,14.045 130.068,2.937 C136.696,9.047 143.326,15.158 149.955,21.267 C163.413,28.528 221.847,29.022 236.659,22.100 C243.552,15.991 250.448,9.880 257.341,3.770 C271.241,6.025 351.909,31.224 359.159,37.930 C347.835,84.811 347.140,189.897 386.205,207.061 C386.205,303.420 384.614,399.808 384.614,496.167 Z"/>
<text kerning="auto" font-family="Myriad Pro" fill="none" transform="matrix(2.48467729658449, 0, 0, 2.60130443930149, 195, 130)" font-size="16px" text-anchor="middle"><tspan id="randomName" font-size="16px" font-family="Athletic, Impact, sans-serif" fill="#FFFFFF">JONES</tspan></text>
<text kerning="auto" font-family="Myriad Pro" fill="none" transform="matrix(12.30398716203319, 0, 0, 12.74070280316502, 195, 320)" font-size="16px" text-anchor="middle"><tspan id="randomNumber" font-size="16px" font-family="NBA Bulls, Impact, sans-serif" fill="#FFFFFF">24</tspan></text>
</svg>
</div>
<div class="panel-footer">
<div style="display:flex;flex-direction:column">
<div class="small">Quick Actions</div>
<div style="display:flex;gap:12px;margin-top:12px">
<button class="btn primary" id="generateBtn">Generate</button>
<a class="btn secondary" href="https://www.figma.com/deck/6792sMxvqK5REyOqzsTKF9/SPEEDPIX-GUIDE?t=N9qJ676YftiWIFuH-1&scaling=min-zoom&content-scaling=fixed&page-id=0%3A1&node-id=1-558">Docs</a>
</div>
</div>
<div style="text-align:right">
<div class="small">Crafted for Printers & Designers</div>
<div class="small" style="margin-top:10px">Contact: jonescamargo7@gmail.com</div>
</div>
</div>
</aside>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r121/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.waves.min.js"></script>
<script>
// Initialize Vanta.js WAVES effect
document.addEventListener('DOMContentLoaded', () => {
// Check if WebGL is supported
const isWebGLSupported = () => {
try {
const canvas = document.createElement('canvas');
return !!window.WebGLRenderingContext && (canvas.getContext('webgl') || canvas.getContext('experimental-webgl'));
} catch (e) {
return false;
}
};
if (isWebGLSupported()) {
VANTA.WAVES({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x1a2639, // Dark fabric-like blue-gray
shininess: 20.00, // Subtle sheen for fabric texture
waveHeight: 10.00, // Gentle waves for textile flow
waveSpeed: 0.5, // Slow, flowing motion
zoom: 0.85 // Slightly zoomed out for depth
});
}
// Card entrance animation
const card = document.querySelector('.card');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
card.classList.add('visible');
observer.unobserve(card);
}
});
}, { threshold: 0.1 });
observer.observe(card);
// SVG load animation
const previewSvg = document.getElementById('previewSvg');
setTimeout(() => {
previewSvg.classList.add('loaded');
}, 100);
// Download button with loading state
const downloadBtn = document.getElementById('downloadBtn');
downloadBtn.addEventListener('click', function(e) {
e.preventDefault();
downloadBtn.classList.add('loading');
downloadBtn.textContent = 'Downloading...';
setTimeout(() => {
window.location.href = 'https://drive.google.com/uc?id=1k6jGHZgvAtaKzMQDoZCHrvdYIBZbmiwv&export=download';
downloadBtn.classList.remove('loading');
downloadBtn.textContent = 'Download (.exe)';
}, 1200);
});
// GitHub link
document.getElementById('repoBtn').addEventListener('click', function(e) {
e.preventDefault();
window.open('https://github.com/CodeNinja-X/SpeedPix-Releases', '_blank');
});
// Generate button functionality
const generateBtn = document.getElementById('generateBtn');
const randomNameElement = document.getElementById('randomName');
const randomNumberElement = document.getElementById('randomNumber');
const names = [
'Gabrielle', 'Lozano', 'Solerix', 'Gustham', 'Pugnetti', 'Quincy', 'Cedric', 'Zalyt', 'Hoffman', 'Ismos',
'Dqatto', 'Exconi', 'Rowvak', 'Rochard', 'Eidoste', 'Latona', 'Nagrelov', 'Cynkson', 'Gibson', 'Lochner',
'Lewrick', 'Kemyrov', 'Graccus', 'Joucanon', 'Ledmore', 'Rawsom', 'Ylmore', 'Acquep', 'Iadro', 'Sydvent',
'Voxton', 'Rivdon', 'Quilland', 'Xajol', 'Riemond', 'Wexler', 'Vachier', 'Tivogal', 'Parquin', 'Oppen',
'Yorgsen', 'Olivan', 'Zighson', 'Rexburg', 'Sanzeri', 'Imrie', 'Cowan', 'Quedrow', 'Jurran', 'Ulland',
'Xavier', 'Pacman', 'Ebner', 'Joplin', 'Leving', 'Nhoan', 'Rutrex', 'Takyo', 'Ewenberg', 'Kaganor',
'Cenmor', 'Azurin', 'Cypwell', 'Langford', 'Davison', 'Garrick', 'Belmont', 'Zeylor', 'Howard', 'Darmond',
'Cruger', 'Mapril', 'Goodwin', 'Orrell', 'Spencer', 'Laplace', 'Quinsey', 'Zagovia', 'Kovax', 'Denmark',
'Amato', 'Yanez', 'Draxon', 'Roth', 'Draper', 'Hendry', 'Kersey', 'Lanskord', 'Dreslin', 'Jugdall',
'Kildren', 'Thorpe', 'Eganor', 'Gheoran', 'Pippin', 'Egrove', 'Zvolman', 'Onubi', 'Imtash', 'Ducard',
'Cavendish', 'Paulsen', 'Colgrave', 'Azylan', 'Gervin', 'Quade', 'Giover', 'Zerjus', 'Furnomo', 'Draxler',
'Waverly', 'Ubzen', 'Howarth', 'Erwin', 'Lucett', 'Yaxley', 'Buxton', 'Astor', 'Gowan', 'Telford',
'Yambach', 'Rogmont', 'Hastings', 'Icaro', 'Vermy', 'Vroland', 'Saxby', 'Bentley', 'Bramell', 'Price',
'Norkov', 'Rosswell', 'Tazman', 'Vysard', 'Auzo', 'Kogan', 'Cylwick', 'Jobbins', 'Brevard', 'Vandrel',
'Zenith', 'Hazeldine', 'Linton', 'Vanguard', 'Henslow', 'Zutman', 'Cavell', 'Xitsen', 'Donovan', 'Dyson',
'Fischer', 'Xenro', 'Drakewell', 'Roslyn', 'Taubert', 'Uzman', 'Keyart', 'Newdock', 'Zwinslow', 'Farnham',
'Ulric', 'Lambert', 'Remington', 'Harding', 'Xabier', 'Quigley', 'Warwick', 'Whitman', 'Dussel', 'Jensen',
'Tegard', 'Figaro', 'Nolan', 'Yorkell', 'Waversey', 'Oakwood', 'Vaskin', 'Ussop', 'Garron', 'Tourney',
'Ifen', 'Parzen', 'Axwell', 'Jerrick', 'Quorum', 'Ewholt', 'Wulfram', 'Oxner', 'Holmgren', 'Bedford',
'Kingston', 'Ronkow', 'Condor', 'Owenby', 'Cyzar', 'Zekal', 'Jovan', 'Zenshire', 'Fessard', 'Keyber',
'Balfour', 'Wyper', 'Ayden', 'Giles', 'Bardell', 'Novak', 'Hamon', 'Ockham', 'Schneider', 'Wozniak',
'Venton', 'Apkedal', 'Galford', 'Dumbrill', 'Ishan', 'Luben', 'Ybarra', 'Peters', 'Tardak', 'Xenosa',
'Himura', 'Vefsen', 'Xeron', 'Kovley', 'Clarke', 'Manfred', 'Jimenez', 'Kerrigan', 'Lorfax', 'Macken',
'Havell', 'Eggers', 'Braxton', 'Higgins', 'Bostwick', 'Ikerd', 'Rosmer', 'Iverson', 'Dekker', 'Qumah',
'Zefran', 'Xavier', 'Gresham', 'Defazio', 'Peterson', 'Quabec', 'Xavier', 'Maxim', 'Brazier', 'Feehan',
'Latham', 'Quinn', 'Tavistock', 'Yukel', 'Tollman', 'Wimberly', 'Otero', 'Upton', 'Lantau', 'Frakes',
'Frazier', 'Eulix', 'Yibara', 'Tynson', 'Dunbar', 'Denton', 'Yorkman', 'Hodges', 'Valdez', 'Gedlow',
'Kendrick', 'Echo', 'Zivik', 'Oxford', 'Acosta', 'Demar', 'Ochoa', 'Quepos', 'Cartwell', 'Morris',
'Tjugan', 'Zyzak', 'Yarlin', 'Ilari', 'Newman', 'Kanek', 'Jarret', 'Gobin', 'Plummer', 'Tiburcio',
'Usland', 'Osorio', 'Zegovic', 'Parkson', 'Henderson', 'Coffman', 'Miller', 'Ulrich', 'Quinlan', 'Gervais',
'Gervaise', 'Jagger', 'Zentner', 'Vumpal', 'Lavigne', 'Fenrir', 'Kavan', 'Quarles', 'Orbeck', 'Cedricson',
'Pomeroy', 'Lefebvre', 'Ohlin', 'Ewchard', 'Michaels', 'Beltran', 'Webber', 'Sarpong', 'Cyannis', 'Zagreb',
'Zaskin', 'Lopez', 'Xavier', 'Aitken', 'Jameson', 'Clark', 'Sablon', 'Foggard', 'Bishop', 'Katlow',
'Vohlin', 'Uzvel', 'Rizden', 'Pagano', 'Savage', 'Vickers', 'Ezren', 'Teter', 'Gundam', 'Udrell',
'Vaughn', 'Majors', 'Kaunter', 'Utriz', 'Quiero', 'Lejan', 'Olquist', 'Uzgarn', 'Mundy', 'Navas',
'Mendosa', 'Guerin', 'Wrexham', 'Huyard', 'Durgan', 'Nixson', 'Upton', 'Qubec', 'Quinby', 'Taft',
'Oljack', 'Saffold', 'Osborn', 'Lilley', 'Luxford', 'Behr', 'Uweber', 'Yoder', 'Wyatt', 'Napier',
'Rispoli', 'Hatcher', 'Devan', 'Isbell', 'Armitage', 'Viccini', 'Sugahara', 'Nadar', 'Enriquez', 'Saillan',
'Kaufman', 'Woolsey', 'Ulven', 'Videmar', 'Ticari', 'Overton', 'Zebedee', 'Rokem', 'Kovitz', 'Qomlen',
'Xavier', 'Frazoni', 'Alfonso', 'Amory', 'Zentak', 'Farquad', 'Jamison', 'Capshaw', 'Belford', 'Ipman',
'Xavier', 'Tegan', 'Prowse', 'Hazard', 'Rizor', 'Ettore', 'Trent', 'Nixfield', 'Connors', 'Hargrove',
'Baxter', 'Xippon', 'Farquhar', 'Uboldi', 'Dodds', 'Zheng', 'Wray', 'Daskins', 'Ibanez', 'Carwyn',
'Hayden', 'Hufford', 'Upford', 'Wyman', 'Goddard', 'Xanders', 'Phillips', 'Usher', 'Babac', 'Ufton',
'Quarrie', 'Utazzo', 'Phelps', 'Yardley', 'Quiggin', 'Jercan', 'Hodway', 'Zutler', 'Moyes', 'Joplin',
'Garlow', 'Quimby', 'Baldwin', 'Kellogg', 'Valser', 'Eidwin', 'Ibley', 'Zentman', 'Bivens', 'Warshaw',
'Glick', 'Ulbricht', 'Rigton', 'Hopkins', 'Parlow', 'Joppa', 'Lombard', 'Saddler', 'Xavier', 'Jeffers',
'Radovan', 'Jarvis', 'Godfrey', 'Clement', 'Aubigny', 'Yarpe', 'Foxen', 'Lacasse', 'Kohler', 'Zagros',
'Goswick', 'Dytham', 'Cadoux', 'Jolliffe', 'Hargrave', 'Krammer', 'Langley', 'Osborne', 'Noxon', 'Vollin',
'Duvall', 'Moxon', 'Winfield', 'Issacson', 'Lajos', 'Zoukas', 'Selwyn', 'Ofori', 'Mossley', 'Xover',
'Ecyra', 'Fazio', 'Jozel', 'Owens'
];
let animationInterval;
let changeCount = 0;
const maxChanges = 685;
const intervalTime = 5; // ms for very fast animation
function getRandomName() {
return names[Math.floor(Math.random() * names.length)];
}
function getRandomNumber() {
return Math.floor(Math.random() * 90) + 10;
}
function animateChanges() {
if (changeCount < maxChanges) {
randomNameElement.textContent = getRandomName();
randomNumberElement.textContent = getRandomNumber();
changeCount++;
} else {
clearInterval(animationInterval);
generateBtn.disabled = false;
generateBtn.textContent = 'Generate';
}
}
generateBtn.addEventListener('click', () => {
generateBtn.disabled = true;
generateBtn.textContent = 'Generating...';
changeCount = 0;
animationInterval = setInterval(animateChanges, intervalTime);
});
});
</script>
</body>
</html>