forked from anuragverma108/SwapReads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
historical-chronicals.html
1034 lines (864 loc) · 36.1 KB
/
historical-chronicals.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
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
s<!DOCTYPE html>
<html lang="en">
<title>SwapReads</title>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="apple-touch-icon" sizes="180x180" href="./assets/favicon_package_v0.16/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon_package_v0.16/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon_package_v0.16/favicon-16x16.png">
<link rel="manifest" href="./assets/favicon_package_v0.16/site.webmanifest">
<link rel="mask-icon" href="./assets/favicon_package_v0.16/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/css/MenuClick.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<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=Philosopher:wght@400;700&family=Poppins:wght@400;500;600&display=swap"
rel="stylesheet">
<link rel="preload" as="image" href="./assets/images/hero-banner.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdn.jsdelivr.net/gh/studio-freight/lenis@1.0.27/bundled/lenis.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/tailwindcss@2.2.19/dist/tailwind.min.css"/>
<link href="https://fonts.googleapis.com/css?family=Work+Sans:200,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/styles.css">
<link rel="stylesheet" href="./assets/css/Available.css">
<script src="./assets/js/rateUsModal.js" defer></script>
<style>
/* Circle styles */
.circle {
height: 24px;
width: 24px;
border-radius: 50%;
background-color: black;
position: fixed;
top: 0;
left: 0;
pointer-events: none;
z-index: 99999999;
transition: transform 0.1s ease-out;
}
</style>
</head>
<script src="https://unpkg.com/scrollreveal"></script>
<script src="./assets/js/faq.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- Swiper CSS -->
<link rel="stylesheet" href="assets/css/swiper-bundle.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/test-style.css">
<style>
.menu {
display: none;
position: absolute;
top: 80px;
right: 0;
background-color: white;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
width: 200px;
z-index: 1000;
margin-right:200px;
}
.menu.active {
display: block;
}
.menu h3 {
padding: 10px;
text-align: center;
}
.menu ul {
list-style: none;
padding: 10px 0;
}
.menu ul li {
padding: 10px;
display: flex;
align-items: center;
}
.menu ul li img {
width: 20px;
height: 20px;
margin-right: 10px;
}
.profile img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #fff;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.book-item {
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
width: 200px;
padding: 0;
margin-left: auto;
margin-right: auto;
background-color: #ffe3e0;
display: flex;
flex-direction: column;
align-items: center;
}
.book-item .btn{
display: block;
width: 90%;
margin: auto;
padding: 10px;
text-align: center;
}
.book-item .read_later_button {
display: block;
width: 90%;
margin: 1px 10px 30px 30px; /* Center align the button */
padding: 10px;
text-align: center;
}
.book-cover {
padding: 0;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
display: block; /* Ensure the image is centered */
}
</style>
<body>
<!-- Circles -->
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<header class="header header-anim" data-header>
<div class="container" style="padding-left: 0;">
<nav class="navbar nav_activated" data-navbar>
<a href="#home" onclick="lenis.scrollTo('#home');" class="logo" style="display:flex;">
<img src="./assets/images/final.png" alt="" class="logopic" style=" width:0.1px;opacity: 0;" />
</a>
<ul class="navbar-list">
<img src="./assets/images/final.png" class="logopic" style=" width: 150px;">
<li class="navbar-item">
<a href="index.html#home" onclick="lenis.scrollTo('#home')" class="navbar-link" data-nav-link><i
class="ri-home-fill"></i> Home</a>
</li>
<li class="navbar-item">
<a href="index.html#benefits" onclick="lenis.scrollTo('#benefits')" class="navbar-link" data-nav-link><i
class="ri-bar-chart-fill"></i> Benefits</a>
</li>
<li class="navbar-item">
<a href="index.html#genre" onclick="lenis.scrollTo('#genre')" class="navbar-link" data-nav-link><i
class="ri-bar-chart-fill"></i> Genre</a>
</li>
<li class="navbar-item">
<a href="#" onclick="openRateUsModal(); return false;" class="navbar-link">Rate Us</a>
</li>
<li class="navbar-item">
<a href="index.html#contact" onclick="lenis.scrollTo('#contact')" class="navbar-link" data-nav-link><i
class="ri-customer-service-2-fill"></i> Contact</a>
</li>
<li class="navbar-item" id="login-signup-link">
<a href="./assets/html/login.html" class="navbar-link">Login/Signup</a>
</li>
<li class="navbar-item dropdown" id="more-dropdown">
<a href="#" class="navbar-link" id="more-link">More
<svg class="dropdown-arrow" xmlns="http://www.w3.org/2000/svg" width="1.3em" height="1.3em"
viewBox="0 0 24 24">
<path fill="currentcolor" d="m12 13.171l4.95-4.95l1.414 1.415L12 16L5.636 9.636L7.05 8.222z" />
</svg></a>
<div class="dropdown-menu" id="dropdown-menu">
<ul class="dropdown-menu-list">
<li class="dropdown-menu-item">
<a href="index.html#chapters" onclick="lenis.scrollTo('#chapters')" class="navbar-link" data-nav-link><i
class="ri-medal-fill"></i> Literary Realms</a>
</li>
<li class="dropdown-menu-item">
<a href="index.html#pricing" onclick="lenis.scrollTo('#pricing')" class="navbar-link" data-nav-link><i
class="ri-price-tag-3-fill"></i> Pricing</a>
</li>
<li class="dropdown-menu-item">
<a href="./assets/html/addremovebook.html" class="navbar-link">Booklist for Swapping</a>
</li>
<li class="dropdown-menu-item">
<a href="./assets/html/book_recommend.html" class="navbar-link" data-nav-link>
<i class="ri-customer-service-2-fill"></i> Book Recommendation
</a>
</li>
<li class="dropdown-menu-item">
<a href="./assets/html/freeBooks.html" onclick="lenis.scrollTo('#E-books')" class="navbar-link"
data-nav-link><i class="ri-price-tag-3-fill"></i>Free E-books</a>
</li>
<li class="dropdown-menu-item">
<a href="././read_later.html" class="navbar-link">Booklist for Swapping</a>
</li>
<li class="dropdown-menu-item">
<a href="./assets/html/about.html" class="navbar-link">About</a>
</li>
</ul>
</div>
</li>
<div class="action">
<div class="profile" onclick="menuToggle();">
<img id="profile-avatar" src="./assets/images/avatar1.jpg" />
</div>
<div class="menu">
<h3>XYZ<br /><span>Book Lover</span></h3>
<ul>
<li><img src="./assets/images/user.jpg" /><a href="/profile.html">My profile</a></li>
<li><img src="./assets/images/edit profile.jpg" /><a href="./assets/html/profileedit.html">Edit profile</a></li>
<li><img src="./assets/images/inbox.png" /><a href="#">Inbox</a></li>
<li><img src="./assets/images/settings.png" /><a href="#">Settings</a></li>
<li><img src="./assets/images/help.png" /><a href="/help.html">Help</a></li>
<li><img src="./assets/images/logout.png" /><a id="logout-btn">Logout</a></li>
</ul>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", () => {
const savedAvatar = localStorage.getItem("selectedAvatar");
if (savedAvatar) {
document.getElementById("profile-avatar").src = `./assets/images/${savedAvatar}`;
}
});
function menuToggle() {
const toggleMenu = document.querySelector(".menu");
toggleMenu.classList.toggle("active");
}
document.addEventListener("click", function(event) {
const profile = document.querySelector(".profile");
const menu = document.querySelector(".menu");
if (!profile.contains(event.target) && !menu.contains(event.target)) {
menu.classList.remove("active");
}
});
let lastScrollTop = 0;
const header = document.querySelector('.header');
window.addEventListener('scroll', function() {
let scrollTop = window.pageYOffset || document.documentElement.scrollTop;
if (scrollTop > lastScrollTop) {
// Downscroll
header.style.transform = 'translateY(-120%)';
} else {
// Upscroll
header.style.transform = 'translateY(0)';
}
lastScrollTop = scrollTop;
});
</script>
<!-- Google Translate Element -->
<li class="navbar-item">
<div id="google_element"></div>
</li>
</ul>
</nav>
</div>
<script src="http://translate.google.com/translate_a/element.js?cb=loadGoogleTranslate"></script>
<script>
function loadGoogleTranslate() {
new google.translate.TranslateElement({
pageLanguage: 'en'
}, 'google_element');
}
</script>
<div class="switch-container" style="top: 15px;">
<input type="checkbox" id="switch" class="switch-checkbox">
<label for="switch" class="switch-label">
<div class="switch-button">
<span class="material-icons sun-icon">wb_sunny</span>
<span class="material-icons moon-icon">brightness_2</span>
</div>
</label>
</div>
</li>
</ul>
</nav>
<button class="nav-toggle-btn" aria-label="toggle menu" data-nav-toggler>
<ion-icon name="menu-outline" aria-hidden="true" class="md hydrated open"></ion-icon>
<ion-icon name="close-outline" aria-hidden="true" class="md hydrated close"></ion-icon>
</button>
</div>
</header>
<main>
<style>
.work-sans {
font-family: 'Work Sans', sans-serif;
}
#menu-toggle:checked + #menu {
display: block;
}
.hover\:grow {
transition: all 0.3s;
transform: scale(1);
}
.hover\:grow:hover {
transform: scale(1.02);
}
</style>
<style>
#chaps {
margin-top: 150px; /* Adjust the margin-top value as needed */
}
</style>
<section class="section chapters" id="chapters">
<div class="container" id="chaps">
<p class="section-subtitle"></p>
<h2 class="h2 section-title has-underline">
Explore New Worlds
<span class="span has-before"></span>
</h2>
<ul class="grid-list">
<li>
<a href="books.html" class="chapter-card">
<p class="card-subtitle"></p>
<h3 class="h3 card-title"> "Step Back in Time"</h3>
<p class="card-text">
</p>
</a>
</li>
<li>
<a href="books.html" class="chapter-card">
<p class="card-subtitle"></p>
<h3 class="h3 card-title">"Uncover Ancient Secrets"</h3>
<p class="card-text">
</p>
</a>
</li>
<li>
<div class="chapter-card">
<p class="card-subtitle"></p>
<h3 class="h3 card-title">"Witness Epic Eras"</h3>
<p class="card-text">
</p>
</div>
</li>
</ul>
</div>
</section>
<!--THE BOOKS-->
<h2 class="h2 section-title has-underline" data-sr-id="11" style="visibility: visible; opacity: 1; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transition: opacity 2s cubic-bezier(0.5, 0, 0, 1) 0.1s, transform 2s cubic-bezier(0.5, 0, 0, 1) 0.1s;">
Historical Chronicles
<span class="span has-before"></span>
</h2>
<div class="book-list">
<div class="book-item">
<img src="https://www.gutenberg.org/cache/epub/2600/pg2600.cover.medium.jpg" alt="War and Peace" class="book-cover">
<h3 class="book_title">War and Peace</h3>
<a href="https://www.gutenberg.org/ebooks/2600" class="btn btn-secondary">Download</a>
<button onclick="addToReadLater(1)" class="read_later_button">Add to Read Later</button>
</div>
<div class="book-item">
<img src="https://www.gutenberg.org/cache/epub/45/pg45.cover.medium.jpg" alt="Anne of Green Gables" class="book-cover">
<h3 class="book_title">Anne of Green Gables</h3>
<a href="https://www.gutenberg.org/ebooks/45" class="btn btn-secondary">Download</a>
<button onclick="addToReadLater(2)" class="read_later_button">Add to Read Later</button>
</div>
<div class="book-item">
<img src="https://www.gutenberg.org/cache/epub/10676/pg10676.cover.medium.jpg" alt="The Reign of Greed" class="book-cover">
<h3 class="book_title">The Reign of Greed</h3>
<a href="https://www.gutenberg.org/ebooks/10676" class="btn btn-secondary">Download</a>
<button onclick="addToReadLater(3)" class="read_later_button">Add to Read Later</button>
</div>
<div class="book-item">
<img src="https://www.gutenberg.org/cache/epub/70891/pg70891.cover.medium.jpg" alt="Notre-Dame de Paris" class="book-cover">
<h3 class="book_title"> Notre-Dame de Paris</h3>
<a href="https://www.gutenberg.org/ebooks/70891" class="btn btn-secondary">Download</a>
<button onclick="addToReadLater(4)" class="read_later_button">Add to Read Later</button>
</div>
<div class="book-item">
<img src="https://www.gutenberg.org/cache/epub/13951/pg13951.cover.medium.jpg" alt="Les trois mousquetaires" class="book-cover">
<h3 class="book_title">Les trois mousquetaires</h3>
<a href="https://www.gutenberg.org/ebooks/13951" class="btn btn-secondary">Download</a>
<button onclick="addToReadLater(5)" class="read_later_button">Add to Read Later</button>
</div>
<div class="book-item">
<img src="https://www.gutenberg.org/cache/epub/67138/pg67138.cover.medium.jpg" alt="The Sun Also Rises" class="book-cover">
<h3 class="book_title">The Sun Also Rises</h3>
<a href="https://www.gutenberg.org/ebooks/67138" class="btn btn-secondary">Download</a>
<button onclick="addToReadLater(6)" class="read_later_button">Add to Read Later</button>
</div>
<div class="book-item">
<img src="https://www.gutenberg.org/cache/epub/47/pg47.cover.medium.jpg" alt="Anne of Avonlea" class="book-cover">
<h3 class="book_title">Anne of Avonlea</h3>
<a href="https://www.gutenberg.org/ebooks/47" class="btn btn-secondary">Download</a>
<button onclick="addToReadLater(7)" class="read_later_button">Add to Read Later</button>
</div>
<div class="book-item">
<img src="https://www.gutenberg.org/cache/epub/46976/pg46976.cover.medium.jpg" alt="The Anabasis of Alexander" class="book-cover">
<h3 class="book_title">The Anabasis of Alexander</h3>
<a href="https://www.gutenberg.org/ebooks/46976" class="btn btn-secondary">Download</a>
<button onclick="addToReadLater(8)" class="read_later_button">Add to Read Later</button>
</div>
<div class="book-item">
<img src="https://www.gutenberg.org/cache/epub/4367/pg4367.cover.medium.jpg" alt="Personal Memoirs" class="book-cover">
<h3 class="book_title">Personal Memoirs</h3>
<a href="https://www.gutenberg.org/ebooks/4367" class="btn btn-secondary">Download</a>
<button onclick="addToReadLater(9)" class="read_later_button">Add to Read Later</button>
</div>
<div class="book-item">
<img src="https://www.gutenberg.org/cache/epub/6737/pg6737.cover.medium.jpg" alt="The Social Cancer" class="book-cover">
<h3 class="book_title">The Social Cancer</h3>
<a href="https://www.gutenberg.org/ebooks/6737" class="btn btn-secondary">Download</a>
<button onclick="addToReadLater(10)" class="read_later_button">Add to Read Later</button>
</div>
</div>
<!-- <li>
<p class="social-list-title h3">Connect SwapReads socials</p>
<ul class="social-list">
<li>
<a href="https://www.facebook.com/" class="social-link">
<ion-icon name="logo-facebook"></ion-icon>
</a>
</li>
<li>
<a href="https://twitter.com/?lang=en" class="social-link">
<ion-icon name="logo-twitter"></ion-icon>
</a>
</li>
<li>
<a href="https://www.linkedin.com/" class="social-link">
<ion-icon name="logo-linkedin"></ion-icon>
</a>
</li>
<li>
<a href="https://www.youtube.com/" class="social-link">
<ion-icon name="logo-youtube"></ion-icon>
</a>
</li> -->
<!-- <li>
<a href="tel:+1234567890" class="social-link">
<ion-icon name="logo-whatsapp"></ion-icon>
</a>
</li> -->
</ul>
</li>
</ul>
</div>
</div>
</section>
</article>
</main>
<footer>
<div class="foot-top">
<div class="foot-left">
<div class="desc">
<!--google translate-->
<div id="google_translate_element"></div>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement(
{pageLanguage: 'en'},
'google_translate_element'
);
}
</script>
<script type="text/javascript"
src=
"https://translate.google.com/translate_a/element.js?
cb=googleTranslateElementInit">
</script>
<div><a href="#" class="logo">SwapReads</a></div>
<div>
<p style="text-align: justify; " class="description">SwapReads.com is the ultimate destination for book
lovers
seeking to swap and
discover new literary gems.
Connect with fellow enthusiasts, exchange your favorite reads, and embark on exciting new adventures in
the
world of literature—all on one convenient platform. Join us and dive into a universe of endless
possibilities!
</p>
</div>
</div>
</div>
<div class="foot-middle">
<h2>Quick Links</h2>
<div id="quicklinks">
<div>
<ul>
<li class="foot-quick"><a href="index.html" onclick="lenis.scrollTo('#home')">Home</a></li>
<li class="foot-quick"><a href="index.html#benefits" onclick="lenis.scrollTo('#benefits')">Benefits</a></li>
<li class="foot-quick"><a href="index.html#chapters" onclick="lenis.scrollTo('#chapters')">Literary Realms</a></li>
<li class="foot-quick"><a href="index.html#pricing" onclick="lenis.scrollTo('#pricing')">Pricing</a></li>
<li class="foot-quick"><a href="./assets/html/bookrecommend.html"
onclick="lenis.scrollTo('#contact')">Recommended Book</a></li>
</ul>
</div>
<div>
<ul>
<li class="foot-quick"><a href="./assets/html/booklistswap.html" onclick="lenis.scrollTo('#contact')">Swap
BookList</a></li>
<li class="foot-quick"><a href="./assets/html/freeBooks.html"
onclick="lenis.scrollTo('#contact')">E-Book</a></li>
<li class="foot-quick"><a href="./assets/html/about.html" onclick="lenis.scrollTo('#contact')">About</a>
</li>
<li class="foot-quick"><a href="index.html#contact" onclick="lenis.scrollTo('#contact')">Contact Us</a></li>
<li class="foot-quick"><a href="index.html#faqq" onclick="lenis.scrollTo('#faqq')">FAQ</a></li>
</ul>
</div>
</div>
</div>
<div class="social-icons">
<style>
input[type="email"] {
border: 2px solid #ccc; /* Gray border */
border-radius: 4px; /* Rounded corners */
padding: 10px; /* Inner padding */
font-size: 16px; /* Font size */
}
</style>
<form type="newsletter">
<label for="newsletter-email" class="newsletter-form">Subscribe to our Newsletter</label>
<div class="row-flex">
<!-- Email input -->
<input type="email" id="newsletter-email" name="email" placeholder="E mail address" pattern="[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}\.com$"
title="Please enter a valid email address that ends with '.com'" required>
<input type="submit" value="Subscribe" name="subscribe" class="subscribe-btn">
</div>
</form>
<div id="confirmationMessage" style="display: none;">Thank you for subscribing!</div>
<div class="icons">
<a href="https://www.discord.com/" target="_blank">
<div class="icon">
<i class="fab fa-discord" title="Discord" style="cursor: pointer;"></i>
</div>
</a>
<a href="https://www.linkedin.com/in/anurag-verma-b91417253/">
<div class="icon">
<i class="fab fa-linkedin" title="linkedin" style="cursor: pointer;"></i>
</div>
</a>
<a href="https://x.com/anuragverma_108">
<div class="icon">
<i class="fab fa-twitter" title="X"style="cursor: pointer;"></i>
</div>
</a>
<a href="#">
<div class="icon">
<i class="fab fa-instagram" title="Instagram"style="cursor: pointer;"></i>
</div>
</a>
<a href="https://www.youtube.com/@anuragbytes" title="YouTube">
<div class="icon">
<i class="fab fa-youtube" style="cursor: pointer; "></i>
</div>
</a>
</div>
<div id="back-to-top-container" onclick="lenis.scrollTo('#home')" class="right">
<div class="circle1">
<svg id="back-to-top" xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor"
class="bi bi-arrow-up-circle-fill" viewBox="0 0 16 16">
<path
d="M16 8A8 8 0 1 0 0 8a8 8 0 0 0 16 0m-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707z" />
</svg>
</div>
</div>
</div>
</div>
<div style="text-align: center; align-items: center;">
<p style="text-align: center">
©
<script>document.write(new Date().getFullYear())</script> All Rights Reserved. Made with ❤ by Guardian Hackers.
</p>
<div class="row-copy">
<a href="copyrightpolicy.html" id="copyrightPolicyLink">Copyright Policy</a> |
<a href="privacynotice.html" id="privacyNoticeLink">Privacy Notice</a>
</div>
</div>
</footer>
<!--Dark Mode-->
<script>
//function to toggle the like button
document.addEventListener("DOMContentLoaded", ()=>{
let hearts= document.querySelectorAll(".heart-icon");
hearts.forEach((heart)=>{
heart.addEventListener("click", ()=>{
heart.classList.toggle("text-blue-500");
})
})
});
// Function to toggle dark mode
function toggleDarkMode() {
const isDarkMode = isDarkModePreferred();
setDarkModePreference(!isDarkMode);
applyDarkModePreference();
}
// Function to apply dark mode preference
function applyDarkModePreference() {
const isDarkMode = isDarkModePreferred();
if (isDarkMode) {
document.body.classList.add('dark-mode');
document.getElementById('theme-icon').src = 'assets/images/icons8-sun.svg';
} else {
document.body.classList.remove('dark-mode');
document.getElementById('theme-icon').src = 'assets/images/moon_solid.svg';
}
}
// Function to set dark mode preference
document.addEventListener('DOMContentLoaded', () => {
const currentTheme = localStorage.getItem('theme');
const switchCheckbox = document.getElementById('switch'); // Define switchCheckbox here
if (switchCheckbox) { // Check if switchCheckbox is not null
function applyDarkModeStyles() {
document.body.classList.remove('light-mode');
document.body.classList.add('dark-mode');
}
function applyLightModeStyles() {
document.body.classList.remove('dark-mode');
document.body.classList.add('light-mode');
}
if (currentTheme) {
if (currentTheme === 'dark-mode') {
applyDarkModeStyles();
switchCheckbox.checked = true;
} else {
applyLightModeStyles();
}
}
switchCheckbox.addEventListener('change', () => {
if (switchCheckbox.checked) {
applyDarkModeStyles();
localStorage.setItem('theme', 'dark-mode');
} else {
applyLightModeStyles();
localStorage.setItem('theme', 'light-mode');
}
});
} else {
console.error("Switch checkbox not found!"); // Log an error if switchCheckbox is null
}
});
</script>
<!--
- custom js link
-->
<script src="./assets/js/script.js" defer></script>
<!--
- ionicon link
-->
<script src="./assets/js/scroll-reveal.js"></script>
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
<!-- Lenis smooth scrolling -->
<script>
document.addEventListener("scroll", function () {
var scrollPosition = window.scrollY;
// Get the top position of each section on the page
var homeSection = document.getElementById("home").offsetTop;
var benefitsSection = document.getElementById("benefits").offsetTop;
var chaptersSection = document.getElementById("chapters").offsetTop;
var pricingSection = document.getElementById("pricing").offsetTop;
var contactSection = document.getElementById("contact").offsetTop;
// Check which section the user has scrolled to and add the active class accordingly
if (scrollPosition < benefitsSection) {
setActiveLink("home");
} else if (scrollPosition >= benefitsSection && scrollPosition < chaptersSection) {
setActiveLink("benefits");
} else if (scrollPosition >= chaptersSection && scrollPosition < pricingSection) {
setActiveLink("chapters");
} else if (scrollPosition >= pricingSection && scrollPosition < contactSection) {
setActiveLink("pricing");
} else {
setActiveLink("contact");
}
});
function setActiveLink(sectionId) {
// Remove active class from all navbar links
var navbarLinks = document.querySelectorAll(".navbar-link");
navbarLinks.forEach(function (link) {
link.classList.remove("active");
});
// Add active class to the navbar link corresponding to the current section
var activeLink = document.querySelector('a[href="#' + sectionId + '"]');
if (activeLink) {
activeLink.classList.add("active");
}
}
const lenis = new Lenis({
duration: 1.8,
easing: (t) => (t === 1 ? 1 : 1 - Math.pow(2, -10 * t)),
direction: "vertical",
gestureDirection: "vertical",
smooth: true,
smoothTouch: false,
touchMultiplier: 2,
});
function raf(time) {
lenis.raf(time);
requestAnimationFrame(raf);
}
requestAnimationFrame(raf);
// JavaScript function to load more content when user scrolls to bottom
function loadMoreContent() {
var scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
var windowHeight = window.innerHeight;
var documentHeight = document.documentElement.scrollHeight;
// Check if user has scrolled to the bottom of the page
if (scrollTop + windowHeight >= documentHeight) {
// Make an AJAX request to fetch more content
// Replace 'more-content-url' with the actual URL to fetch more content
fetch('/index.html')
.then(response => response.text())
.then(data => {
// Append the fetched content to the page
document.getElementById('content-container').insertAdjacentHTML('beforeend', data);
})
.catch(error => console.error('Error fetching more content:', error));
}
}
// Event listener to trigger loadMoreContent function when user scrolls
window.addEventListener('scroll', loadMoreContent);
</script>
<script type="module">
import { getAuth, onAuthStateChanged, signOut } from "https://www.gstatic.com/firebasejs/10.8.1/firebase-auth.js";
import { initializeApp } from "https://www.gstatic.com/firebasejs/10.8.1/firebase-app.js";
// Your web app's Firebase configuration
const firebaseConfig = {
apiKey: "AIzaSyCu2WXknNce_49J5BLuR1DyHm319hu6dWc",
authDomain: "login-13127.firebaseapp.com",
projectId: "login-13127",
storageBucket: "login-13127.appspot.com",
messagingSenderId: "151656578300",
appId: "1:151656578300:web:c67208ab6ec437c844ab79",
measurementId: "G-L3PPD58MZ8",
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const auth = getAuth();
// Check authentication state and update navbar
onAuthStateChanged(auth, (user) => {
if (user) {
document.getElementById("login-signup-link").style.display = "none";
document.getElementById("logout-link").style.display = "block";
} else {
document.getElementById("login-signup-link").style.display = "block";
document.getElementById("logout-link").style.display = "none";
}
});
// Logout function
document.getElementById("logout").addEventListener("click", (e) => {
e.preventDefault();
signOut(auth).then(() => {
alert("Logged out successfully.");
}).catch((error) => {
console.error("Logout error:", error);
});
});
</script>
<script src="vanilla-tilt.js"></script>
<script type="text/javascript">
(function (d, t) {
var v = d.createElement(t), s = d.getElementsByTagName(t)[0];
v.onload = function () {
window.voiceflow.chat.load({
verify: { projectID: '66448ea9c63c08981233b8f1' },
url: 'https://general-runtime.voiceflow.com',
versionID: 'production'
});
}
v.src = "https://cdn.voiceflow.com/widget/bundle.mjs"; v.type = "text/javascript"; s.parentNode.insertBefore(v, s);
})(document, 'script');
</script>
<!-- Swiper JS -->
<script src="assets/js/swiper-bundle.min.js"></script>
<!-- Custom JavaScript -->
<script src="assets/js/test-script.js"></script>
<script src="scroll.js"></script>
<script>
const navbar=document.querySelector('.navbar'),
NavButton=document.querySelector('.nav-toggle-btn'),
open=document.querySelector('.open'),
close=document.querySelector('.close');
let count=0
NavButton.addEventListener('click',()=>{
if(count===0){
navbar.classList.remove('nav_activated')
open.classList.add('close')
close.classList.add('open')
open.classList.remove('open')
close.classList.remove('close')
count++
}
else{
navbar.classList.add('nav_activated')
open.classList.add('open')
close.classList.add('close')
open.classList.remove('close')
close.classList.remove('open')
count=0
}
})
</script>
<script>
// Coordinates for the cursor
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
// Colors for the circles
const colors = [
"#ffb56b", "#fdaf69", "#f89d63", "#f59761", "#ef865e", "#ec805d",
"#e36e5c", "#df685c", "#d5585c", "#d1525c", "#c5415d", "#c03b5d",
"#b22c5e", "#ac265e", "#9c155f", "#950f5f", "#830060", "#7c0060",
"#680060", "#60005f", "#48005f", "#3d005e"
];
// Assign colors and initial position to each circle
circles.forEach(function (circle, index) {
circle.x = 0;
circle.y = 0;
circle.style.backgroundColor = colors[index % colors.length];
});
// Update the coordinates when the mouse moves
window.addEventListener("mousemove", function (e) {