-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
686 lines (593 loc) · 21 KB
/
index.html
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
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SM-T585 Custom ROMs - Gtaxllte</title>
<link rel="icon" type="image/png" href="images/logo.jpg">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/particlesjs/2.2.3/particles.min.js"
integrity="sha512-jq8sZI0I9Og0nnZ+CfJRnUzNSDKxr/5Bvha5bn7AHzTnRyxUfpUArMzfH++mwE/hb2efOo1gCAgI+1RMzf8F7g=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<style>
:root {
--primary-color: #8b81fa;
--secondary-color: #4a148c;
--hover-color: rgba(255, 255, 255, 0.07);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #000000;
color: #e0e0e0;
font-family: 'Roboto', sans-serif;
line-height: 1.6;
overflow-x: hidden;
transition: background-color 0.3s ease;
}
.body-no-scroll {
overflow-y: hidden;
}
header {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background: transparent;
background: linear-gradient(to bottom right, #000000, #1b004d);
text-align: center;
color: #ffffff;
overflow: hidden;
}
header .background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: none;
}
header h1,
header p,
header a {
user-select: none;
}
header h1 {
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.6);
animation: fadeInDown 1s ease forwards;
}
header p {
font-size: 1.5rem;
margin-bottom: 40px;
animation: fadeIn 1s ease forwards;
}
header a {
padding: 15px 30px;
background-color: #1b004d;
color: #ffffff;
border-radius: 25px;
text-decoration: none;
font-weight: 700;
transition: background-color 0.3s ease, transform 0.3s ease;
margin: 0 5px;
animation: fadeIn 1s ease forwards;
}
header a:hover {
background-color: #2e0079;
transform: scale(1.05);
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.sidebar {
position: fixed;
top: 0;
left: 0;
transform: translateX(-100%);
width: 300px;
height: 100%;
background: linear-gradient(to bottom right, rgba(0, 0, 5, 0.9), rgba(0, 0, 20, 0.85), rgba(10, 10, 50, 0.8));
backdrop-filter: blur(10px);
padding: 35px;
border-radius: 15px;
transition: transform 0.25s ease;
z-index: 999;
overflow-y: auto;
visibility: hidden;
opacity: 0;
scrollbar-color: #D8BFD8 rgba(0, 0, 0, 0.1);
scrollbar-width: thin;
}
.sidebar.open {
transform: translateX(0);
visibility: visible;
opacity: 1;
}
.sidebar h2 {
margin-bottom: 20px;
color: #ffffff;
font-size: 1.8rem;
text-transform: uppercase;
letter-spacing: 1.5px;
user-select: none;
position: relative;
padding-bottom: 15px;
}
.sidebar h2::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2px;
background: linear-gradient(to right, #ff5f6d, #ffc371, #48c6ef, #6a11cb, #ff7eb3);
z-index: 1;
}
.sidebar a {
display: flex;
align-items: center;
color: #e0e0e0;
text-decoration: none;
padding: 14px 0;
transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
border-radius: 10px;
margin-bottom: 10px;
background: transparent;
position: relative;
overflow: hidden;
}
.sidebar a:hover {
color: #ffffff;
background-color: var(--hover-color);
}
.sidebar a i {
margin-right: 20px;
font-size: 1.3rem;
width: 25px;
text-align: center;
transition: transform 0.2s ease;
}
.sidebar a:hover i {
transform: scale(1.1);
}
.sidebar a::before {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2px;
background-color: var(--primary-color);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.2s ease;
}
.sidebar a:hover::before {
transform: scaleX(1);
}
.sidebar a:nth-child(2) i {
color: #fdd835;
}
.sidebar a:nth-child(3) i {
color: #00bcd4;
}
.sidebar a:nth-child(4) i {
color: #4caf50;
}
.sidebar a:nth-child(5) i {
color: #ff9800;
}
.sidebar a:nth-child(6) i {
color: #ff5722;
}
.sidebar a:nth-child(7) i {
color: #9c27b0;
}
.sidebar a:nth-child(8) i {
color: #03a9f4;
}
.sidebar a:nth-child(9) i {
color: #e91e63;
}
.sidebar a:nth-child(10) i {
color: #673ab7;
}
.sidebar a:nth-child(11) i {
color: #8bc34a;
}
.sidebar a:nth-child(12) i {
color: #f44336;
}
.sidebar a:nth-child(13) i {
color: #3f51b5;
}
.sidebar a:nth-child(14) i {
color: #ffc107;
}
.sidebar a:nth-child(15) i {
color: #009688;
}
.toggle-btn {
position: absolute;
top: 20px;
left: 20px;
font-size: 24px;
color: #fff;
cursor: pointer;
z-index: 1000;
transition: color 0.2s ease;
}
.toggle-btn:hover {
color: var(--primary-color);
}
.roms-section {
padding: 50px 20px;
text-align: center;
}
.roms-section h2 {
font-size: 2.5rem;
margin-bottom: 30px;
color: #8b81fa;
user-select: none;
}
.rom-cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.android-card {
background-color: #121212;
border-radius: 15px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
width: 300px;
padding: 20px;
position: relative;
overflow: hidden;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
user-select: none;
}
.android-card:hover {
transform: translateY(-10px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
}
.android-card img {
width: 100px;
margin-bottom: 15px;
}
.android-card h3 {
color: #ffffff;
font-size: 1.5rem;
margin-bottom: 10px;
user-select: none;
}
.android-card button {
padding: 10px 20px;
background-color: #1b004d;
color: #ffffff;
border-radius: 25px;
font-weight: 800;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.3s ease;
border: none;
}
.android-card button:hover {
background-color: #2e0079;
transform: scale(1.05);
}
.donations-section {
background-color: #1c1c3a;
padding: 50px 20px;
text-align: center;
margin-top: 50px;
border-radius: 15px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}
.donations-section h2 {
font-size: 2rem;
margin-bottom: 20px;
color: #ffffff;
}
.donations-section p {
font-size: 1.2rem;
color: #e0e0e0;
}
.donation-button {
text-decoration: none;
color: #ffffff;
padding: 12px 25px;
border-radius: 25px;
margin: 10px 0;
font-size: 16px;
display: inline-flex;
justify-content: center;
align-items: center;
transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.donation-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
.donation-button i {
margin-right: 8px;
}
.donation-button.youtube {
background-color: #ff0000;
}
.donation-button.youtube:hover {
background-color: #cc0000;
}
.donation-button.telegram {
background-color: #0088cc;
}
.donation-button.telegram:hover {
background-color: #006699;
}
.donation-button.chat {
background-color: #4caf50;
}
.donation-button.chat:hover {
background-color: #388e3c;
}
footer {
padding: 20px;
background-color: #000000;
text-align: center;
margin-top: 50px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
user-select: none;
}
footer a {
color: #81d4fa;
text-decoration: none;
font-size: 1rem;
}
.footer__copy {
display: block;
color: #81d4fa;
margin-top: 2.5rem;
text-align: center;
user-select: none;
}
.social-icons {
margin-top: 10px;
}
.social-icons a {
color: #81d4fa;
margin: 0 10px;
font-size: 1.5rem;
}
@media (max-width: 768px) {
header h1 {
font-size: 2.5rem;
}
header p {
font-size: 1.2rem;
}
.rom-cards {
flex-direction: column;
align-items: center;
}
}
</style>
<script>
function smoothScroll(target) {
document.querySelector(target).scrollIntoView({
behavior: 'smooth'
});
}
let animationFrame = null;
let isSidebarOpen = false;
function toggleSidebar() {
const sidebar = document.querySelector('.sidebar');
const toggleBtn = document.querySelector('.toggle-btn i');
const body = document.querySelector('body');
if (animationFrame) {
cancelAnimationFrame(animationFrame);
}
const startTransform = isSidebarOpen ? 0 : -100;
const endTransform = isSidebarOpen ? -100 : 0;
let startTime = null;
const animate = (time) => {
if (!startTime) startTime = time;
const progress = Math.min((time - startTime) / 50, 1);
const transformValue = startTransform + (endTransform - startTransform) * progress;
sidebar.style.transform = `translateX(${transformValue}%)`;
if (progress < 1) {
animationFrame = requestAnimationFrame(animate);
}
else {
sidebar.style.visibility = endTransform === 0 ? "visible" : "hidden";
sidebar.style.opacity = endTransform === 0 ? 1 : 0;
animationFrame = null;
}
};
if (!isSidebarOpen) {
sidebar.style.visibility = "visible";
sidebar.style.opacity = 1;
}
animationFrame = requestAnimationFrame(animate);
isSidebarOpen = !isSidebarOpen;
if (isSidebarOpen) {
toggleBtn.classList.remove('fa-bars');
toggleBtn.classList.add('fa-times');
body.classList.add('body-no-scroll');
} else {
toggleBtn.classList.remove('fa-times');
toggleBtn.classList.add('fa-bars');
body.classList.remove('body-no-scroll');
}
}
function closeSidebar(event) {
const sidebar = document.querySelector('.sidebar');
const toggleBtn = document.querySelector('.toggle-btn');
if (isSidebarOpen &&
!sidebar.contains(event.target) &&
!toggleBtn.contains(event.target)) {
toggleSidebar();
}
}
function handleScroll() {
if (isSidebarOpen) {
toggleSidebar();
}
}
window.addEventListener('load', function () {
Particles.init({
selector: "header .background",
color: ["#FF0099", "#00FFFF"],
connectParticles: true,
responsive: [
{
breakpoint: 765,
options: {
color: ["#FFF", "#FF0099", "#00FFFF"],
maxParticles: 90,
connectParticles: false,
},
},
],
});
});
document.addEventListener('click', closeSidebar);
document.addEventListener('scroll', handleScroll);
</script>
</head>
<body>
<header>
<canvas class="background"></canvas>
<span class="toggle-btn" onclick="toggleSidebar()"><i class="fas fa-bars"></i></span>
<div class="sidebar">
<h2>Related Topics</h2>
<a href="https://zoro2045.github.io/SM-T585-Custom-ROMs/main2/index.html"><i class="fas fa-sun"></i> Light Mode</a>
<a href="https://developer.samsung.com/android-usb-driver"><i class="fas fa-plug"></i> USB Drivers</a>
<a href="https://odindownload.com/mobile/"><i class="fas fa-download"></i> Odin3</a>
<a href="https://samfw.com/firmware/SM-T585/EGY/"><i class="fas fa-file-alt"></i> Firmware</a>
<a href="twrp/index.html"><i class="fas fa-tools"></i> TWRP</a>
<a href="custom_recovery/index.html"><i class="fas fa-hdd"></i> Custom Recoveries</a>
<a href="twrp/twrp-storage-mount-fix/index.html"><i class="fas fa-exclamation-triangle"></i> Storage Mount Fix</a>
<a href="flash_firmware/index.html"><i class="fas fa-sync"></i> Flash Firmware</a>
<a href="fix_partitions/index.html"><i class="fas fa-cogs"></i> Fix Partitions</a>
<a href="disable_encryption/index.html"><i class="fas fa-unlock"></i> Disable Encryption</a>
<a href="gapps/index.html"><i class="fab fa-google"></i> GApps Packages</a>
<a href="root/index.html"><i class="fas fa-key"></i> Magisk & Apatch</a>
<a href="javascript:void(0)" onclick="smoothScroll('.donations-section')">
<i class="fas fa-hand-holding-heart"></i> Support</a>
<a href="about/index.html"><i class="fas fa-info-circle"></i> About us</a>
</div>
<h1>Custom ROMs for Samsung Galaxy Tab A 10.1 2016</h1>
<p>Unlock amazing performance with custom ROMs for your device! 🚀</p>
<div>
<a href="javascript:void(0);" onclick="smoothScroll('#roms')">Let’s go!</a>
<a href="https://zoro2045.github.io/SM-T585-Custom-ROMs/flash_guide/index.html"
style="margin-left: 15px;">Full Guide</a>
</div>
</header>
<section id="roms" class="roms-section">
<h2>Android Versions</h2>
<div class="rom-cards">
<div class="android-card">
<img src="images/8.png" alt="Android 8">
<h3>Android 8 O</h3>
<button onclick="window.location.href='8/index.html'" style="font-size: 18px;">View Available ROMs</button>
</div>
<div class="android-card">
<img src="images/9.png" alt="Android 9">
<h3>Android 9 P</h3>
<button onclick="window.location.href='9/index.html'" style="font-size: 18px;">View Available ROMs</button>
</div>
<div class="android-card">
<img src="images/10.png" alt="Android 10">
<h3>Android 10 Q</h3>
<button onclick="window.location.href='10/index.html'" style="font-size: 18px;">View Available ROMs</button>
</div>
<div class="android-card">
<img src="images/11.png" alt="Android 11">
<h3>Android 11 R</h3>
<button onclick="window.location.href='11/index.html'" style="font-size: 18px;">View Available ROMs</button>
</div>
<div class="android-card">
<img src="images/12.png" alt="Android 12">
<h3>Android 12 S</h3>
<button onclick="window.location.href='12/index.html'" style="font-size: 18px;">View Available ROMs</button>
</div>
<div class="android-card">
<img src="images/13.png" alt="Android 13">
<h3>Android 13 T</h3>
<button onclick="window.location.href='13/index.html'" style="font-size: 18px;">View Available ROMs</button>
</div>
<div class="android-card">
<img src="images/14.png" alt="Android 14">
<h3>Android 14 U</h3>
<button onclick="window.location.href='14/index.html'" style="font-size: 18px;">View Available ROMs</button>
</div>
</div>
<section class="donations-section">
<section class="donations-section">
<h2>Support the ROM Development</h2>
<p>You can support by sending donations via Vodafone Cash.</p>
<p style="font-size: 18px; margin: 10px 0;">
<i class="fas fa-money-bill-wave"></i> Vodafone Cash: <strong>01095673573</strong>
</p>
<div style="margin-top: 20px; display: flex; flex-direction: column; align-items: center;">
<a href="https://t.me/gtaxllte" class="donation-button telegram">
<i class="fab fa-telegram"></i> Telegram Channel
</a>
<a href="https://t.me/smt585chat" class="donation-button chat">
<i class="fas fa-comments"></i> Chat Group
</a>
<a href="https://youtube.com/@seifel-deinhossam6690?feature=shared" class="donation-button youtube">
<i class="fab fa-youtube"></i> YouTube Channel
</a>
</div>
</section>
<footer>
<p>Developed by <a href="https://zoro2045.github.io/">ፚ Ꭷ Ꮢ Ꭷ ❥</a></p>
<div class="social-icons">
<a href="https://twitter.com/DEV_ZORO2045" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://t.me/ZORO2045" target="_blank"><i class="fab fa-telegram"></i></a>
<a href="https://github.com/ZORO2045" target="_blank"><i class="fab fa-github"></i></a>
</div>
</footer>
<span class="footer__copy">
© 2025 All rights reserved.
</span>
</body>
</html>