forked from nikhildeora/cool-monk-ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
1152 lines (1008 loc) · 35 KB
/
index.js
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
import navbar from "./cmmponents/navbar.js"
const navbar_div = document.getElementById("navbar")
navbar_div.innerHTML = navbar()
import footer from "./cmmponents/footer.js"
const footer_div = document.getElementById("footer")
footer_div.innerHTML = footer()
var toys = [
{
image: "https://img.shop.com/Image/240000/243400/243406/products/1953965126.jpg?plain&size=600x600",
star: 5,
name: "FurReal Cinnamon My Stylin' Pony Interactive Pet Toy",
price: 620,
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://img.shop.com/Image/270000/274900/274929/products/1949640014.jpg?plain&size=450x450",
star: 4,
name: "Barbie Signature - 2022 Holiday Barbie Doll, Black Hair, One Size",
price: 900,
shipping: "Free Shipping"
},
{
image: "https://img.shop.com/Image/240000/243400/243406/products/1909271529.jpg?plain&size=1467x1467",
star: 3,
name: "FurReal Friends GoGo My Dancing Pup",
price: 752,
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/243400/243406/products/1903478098.jpg?plain&size=1467x1467",
star: 4,
name: "FurReal Friends Snackin' Sam the Bronto Plush Toy",
price: 1000,
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/243500/243545/products/1908038413.jpg?plain&size=956x956",
star: 4,
name: "Aurora World Sam I Am Plush Dood Toy Multi",
price: 440,
shipping: "Free Shipping"
},
{
image: "https://img.shop.com/Image/240000/243500/243545/products/1908038410.jpg?plain&size=956x956",
star: 5,
name: "Aurora World Horton Plush Toy Multi",
price: 110,
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/243500/243545/products/1918149955.jpg?plain&size=956x956",
star: 5,
name: "Aurora World Cow Plush Toy Multi",
price: 200,
shipping: "Free Shipping"
},
]
let swipper_div4_first = document.querySelector("#div4_main>#div4_first>.mySwiper3>.swiper-wrapper")
const append_div4_first = (data) => {
data.forEach((el) => {
// console.log(el);
let div = document.createElement("div");
div.setAttribute("class", "swiper-slide");
div.onclick = ()=>{
localStorage.setItem("swiped_data",JSON.stringify(el))
window.location.href = "./items_detail.html"
}
let image = document.createElement("img");
image.src = el.image;
let name = document.createElement("h2")
name.innerText = el.name;
let price = document.createElement("p")
price.setAttribute("class", "div17_price")
price.innerText = el.price;
let div_star = document.createElement("div")
for (let i = 0; i < el.star; i++) {
let star = document.createElement("i")
star.setAttribute("class", "fa-solid fa-star")
div_star.append(star)
}
let ship = document.createElement("p");
ship.setAttribute("class", "div17_ship")
ship.innerText = el.shipping;
div.append(image, name, price, div_star, ship);
swipper_div4_first.append(div);
})
}
append_div4_first(toys)
var swiper = new Swiper(".mySwiper3", {
slidesPerView: 3,
spaceBetween: 30,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
// https://img.shop.com/Image/homepage/shop-gbr-102789-holiday-hot-toys-banners-600x600-img-min1666631558062.jpg
// one more image for hottest toys side
var medicine = [
{
image: "https://img.shop.com/Image/240000/247900/247927/products/1948463047.jpg?plain&size=1600x1600",
star: 3,
name: "Shopping Annuity® Brand Premium Extra Strength Pain Relief Spray",
price: "Rs 1010",
rating: "112",
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/q/W/gwOZuHBJ0.webp",
star: 5,
name: "AXIS Nutrition™ Advanced Digestive Support",
price: "Rs 950",
rating: "64",
shipping: "Free Shipping"
},
{
image: "https://www.shop.com/feo-cdn/-/5/8968QA4Z0.webp",
star: 4,
name: "Pet Health CBD Formula for Cats & Dogs Pet Tincture",
price: "Rs 620",
rating: "56",
shipping: "Free Shipping"
},
{
image: "https://www.shop.com/feo-cdn/R/j/mhinj93tY.webp",
star: 5,
name: "Shopping Annuity® Brand Premium Apple Cider Vinegar + Ginger Gummies",
price: "Rs 870",
rating: "91",
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/6/q/Jxj__g10Y.webp",
star: 3,
name: "AXIS Nutrition™ Advanced Digestive Support",
price: "Rs 620",
rating: "136",
shipping: "Free Shipping"
},
{
image: "https://www.shop.com/feo-cdn/5/c/-DV5JOK74.webp",
star: 5,
name: "Pet Health CBD Formula for Cats & Dogs Pet Tincture",
price: "Rs 1120",
rating: "86",
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/J/X/Cxq1d2u7c.webp",
star: 4,
name: "Shopping Annuity® Brand Premium Apple Cider Vinegar + Ginger Gummies",
price: "Rs 960",
rating: "111",
shipping: "Free Shipping with 500 Rs Order"
},
]
let swipper_div_medicine = document.querySelector("#div7_main>#sample_swipper>.mySwiper2>.swiper-wrapper")
const append_medicine = (data) => {
data.forEach((el) => {
let div = document.createElement("div");
div.setAttribute("class", "swiper-slide");
div.onclick = ()=>{
localStorage.setItem("swiped_data",JSON.stringify(el))
window.location.href = "./items_detail.html"
}
let image = document.createElement("img");
image.src = el.image;
let name = document.createElement("h2")
name.innerText = el.name;
let price = document.createElement("p")
price.setAttribute("class", "div17_price")
price.innerText = el.price;
let div_star = document.createElement("div")
for (let i = 0; i < el.star; i++) {
let star = document.createElement("i")
star.setAttribute("class", "fa-solid fa-star")
div_star.append(star)
}
let ship = document.createElement("p");
ship.setAttribute("class", "div17_ship")
ship.innerText = el.shipping;
div.append(image, name, price, div_star, ship);
swipper_div_medicine.append(div);
})
}
append_medicine(medicine)
var swiper2 = new Swiper(".mySwiper2", {
slidesPerView: 4,
spaceBetween: 30,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
// Utkarsh js
// div 10
// https://img.shop.com/Image/homepage/motives-usa-can-eng-105076-2022-holiday-banner-600x600-img-min1666019864593.jpg
// extra image for div 10
let div10_data = [
{
image: "https://img.shop.com/Image/240000/243300/243380/products/1942133519.jpg?plain&size=600x600",
name: "Motives X Amber Essentials Collection",
price: 500,
star: 4,
shipping: "Free Shipping"
},
{
image: "https://img.shop.com/Image/240000/243300/243380/products/1939204281.jpg?plain&size=600x600",
name: "Motives Gel-ous Brow Gel",
price: 400,
star: 3,
shipping: "Free Shipping with 300 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/243300/243380/products/1841776313.jpg?plain&size=600x600",
name: "Motives Lip Kit",
price: 699,
star: 3,
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/243300/243380/products/1942133481.jpg?plain&size=600x600",
name: "Motives Essentials Complexion 4-Piece Brush Set",
price: 899,
star: 4,
shipping: "Free Shipping with 400 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/243300/243380/products/1487570156.jpg?plain&size=600x600",
name: "Motives Fiber Lush Mascara",
price: 1299,
star: 2,
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/243300/243380/products/1942133520.jpg?plain&size=600x600",
name: "Motives Essential Eye 7-Piece Brush Test",
price: 499,
star: 5,
shipping: "Free Shipping"
},
{
image: "https://img.shop.com/Image/240000/243300/243380/products/1942133484.jpg?plain&size=600x600",
name: "Motives 30th Anniverary Lip Collection",
price: 1099,
star: 2,
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/243300/243380/products/1905765309.jpg?plain&size=600x600",
name: "Motives LALA Liquid Lipstick",
price: 1499,
star: 1,
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/243300/243380/products/536366061.jpg?plain&size=600x600",
name: "Motives 10 Years Younger Makeup Setting Spray",
price: 599,
star: 4,
shipping: "Free Shipping with 1000 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/243300/243380/products/1942133569.jpg?plain&size=600x600",
name: "Motives Eye Prime",
price: 299,
star: 2,
shipping: "Free Shipping"
}
]
let swipper_div10_second = document.querySelector("#div10_main>#div10_second>.mySwiper4>.swiper-wrapper")
const append_div10_second = (data) => {
data.forEach((el) => {
let div = document.createElement("div");
div.setAttribute("class", "swiper-slide");
div.onclick = ()=>{
localStorage.setItem("swiped_data",JSON.stringify(el))
window.location.href = "./items_detail.html"
}
let image = document.createElement("img");
image.src = el.image;
let name = document.createElement("h2")
name.innerText = el.name;
let price = document.createElement("p")
price.setAttribute("class", "div17_price")
price.innerText = el.price;
let div_star = document.createElement("div")
for (let i = 0; i < el.star; i++) {
let star = document.createElement("i")
star.setAttribute("class", "fa-solid fa-star")
div_star.append(star)
}
let ship = document.createElement("p");
ship.setAttribute("class", "div17_ship")
ship.innerText = el.shipping;
div.append(image, name, price, div_star, ship);
swipper_div10_second.append(div);
})
}
append_div10_second(div10_data)
var swiper = new Swiper(".mySwiper4", {
slidesPerView: 3,
spaceBetween: 30,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
// div 11
// https://img.shop.com/Image/homepage/lumiere-usa-104869-holiday-2022-banner-600x600-img-min1666027440902.jpg
// extra image for div 11
let div11_data = [
{
image: "https://img.shop.com/Image/240000/248600/248698/products/1766653370.jpg?plain&size=600x600",
name: "Lumière de Vie - Rose Quartz Roller",
price: 500,
star: 4,
shipping: "Free Shipping"
},
{
image: "https://img.shop.com/Image/240000/248600/248698/products/1849034699.jpg?plain&size=600x600",
name: "Lumière de Vie - Lumi Stick",
price: 400,
star: 3,
shipping: "Free Shipping with 1000 Rs Order"
},
{
image: "https://img.shop.com/Image/270000/274000/274036/products/1827874989.jpg?plain&size=600x600",
name: "Lumière de Vie - Hommes Skin Care Value",
price: 699,
star: 3,
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/248600/248698/products/1865413644.jpg?plain&size=600x600",
name: "Lumière de Vie - Renewal Hand & Body Creme",
price: 899,
star: 4,
shipping: "Free Shipping"
},
{
image: "https://img.shop.com/Image/240000/248600/248698/products/1939501238.jpg?plain&size=600x600",
name: "Lumière de Vie - Refine & Moisturize Lip Duo",
price: 1299,
star: 2,
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/248600/248698/products/1769489571.jpg?plain&size=600x600",
name: "Lumière de Vie - Matte Moisturizer",
price: 499,
star: 5,
shipping: "Free Shipping with 700 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/248600/248698/products/1942133542.jpg?plain&size=600x600",
name: "Lumière de Vie - Hydrate 3.0",
price: 1099,
star: 2,
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/248600/248698/products/1942133509.jpg?plain&size=600x600",
name: "Lumière de Vie - The Elixir",
price: 1499,
star: 1,
shipping: "Free Shipping with 800 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/248600/248698/products/1887211674.jpg?plain&size=600x600",
name: "Lumière de Vie - Skincare Brush Collection",
price: 599,
star: 4,
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/248600/248698/products/1935915380.jpg?plain&size=600x600",
name: "Lumière de Vie - Soothe & Renew Hydrogel Masque",
price: 299,
star: 2,
shipping: "Free Shipping"
}
]
let swipper_div11_first = document.querySelector("#div11_main>#div11_first>.mySwiper5>.swiper-wrapper")
const append_div11_first = (data) => {
data.forEach((el) => {
// console.log(el);
let div = document.createElement("div");
div.setAttribute("class", "swiper-slide");
div.onclick = ()=>{
localStorage.setItem("swiped_data",JSON.stringify(el))
window.location.href = "./items_detail.html"
}
let image = document.createElement("img");
image.src = el.image;
let name = document.createElement("h2")
name.innerText = el.name;
let price = document.createElement("p")
price.setAttribute("class", "div17_price")
price.innerText = el.price;
let div_star = document.createElement("div")
for (let i = 0; i < el.star; i++) {
let star = document.createElement("i")
star.setAttribute("class", "fa-solid fa-star")
div_star.append(star)
}
let ship = document.createElement("p");
ship.setAttribute("class", "div17_ship")
ship.innerText = el.shipping;
div.append(image, name, price, div_star, ship);
swipper_div11_first.append(div);
})
}
append_div11_first(div11_data)
var swiper = new Swiper(".mySwiper5", {
slidesPerView: 3,
spaceBetween: 30,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
// div 12
// https://img.shop.com/Image/homepage/layered-usa-105249-ambers-favorites-banner-600x600-img-min1666023332340.jpg
// extra image for div 12
let div12_data = [
{
image: "https://img.shop.com/Image/280000/282000/282022/products/1943471860.jpg?plain&size=600x600",
name: "OLIVIA - FReshwater Pearl & Paperclip Bracelet",
price: 500,
star: 4,
shipping: "Free Shipping"
},
{
image: "https://img.shop.com/Image/280000/282000/282022/products/1932866534.jpg?plain&size=600x600",
name: "SELENA - Pave Cuban Link Chain",
price: 400,
star: 3,
shipping: "Free Shipping with 800 Rs Order"
},
{
image: "https://img.shop.com/Image/280000/282000/282022/products/1925345920.jpg?plain&size=600x600",
name: "ENZO - Cable Link Bracelet",
price: 699,
star: 3,
shipping: "Free Shipping"
},
{
image: "https://img.shop.com/Image/280000/282000/282022/products/1943472049.jpg?plain&size=600x600",
name: "KOURTNEY - Nine Cross Necklace",
price: 899,
star: 4,
shipping: "Free Shipping with 1100 Rs Order"
},
{
image: "https://img.shop.com/Image/240000/248600/248698/products/1939501238.jpg?plain&size=600x600",
name: "Lumière de Vie - Refine & Moisturize Lip Duo",
price: 1299,
star: 2,
shipping: "Free Shipping with 1500 Rs Order"
},
{
image: "https://img.shop.com/Image/280000/282000/282022/products/1943472083.jpg?plain&size=600x600",
name: "EDEN - Chain Link Pendant",
price: 499,
star: 5,
shipping: "Free Shipping with 700 Rs Order"
},
{
image: "https://img.shop.com/Image/280000/282000/282022/products/1943472043.jpg?plain&size=600x600",
name: "HARPER - Ultra Wide Herringbone",
price: 1099,
star: 2,
shipping: "Free Shipping with 900 Rs Order"
},
{
image: "https://img.shop.com/Image/280000/282000/282022/products/1943471807.jpg?plain&size=600x600",
name: "SEBASTIAN - Slider Hoops",
price: 1499,
star: 1,
shipping: "Free Shipping with 500 Rs Order"
},
{
image: "https://img.shop.com/Image/280000/282000/282022/products/1943471851.jpg?plain&size=600x600",
name: "SAYLOR - Satin Finish Cuff",
price: 599,
star: 4,
shipping: "Free Shipping"
},
{
image: "https://img.shop.com/Image/280000/282000/282022/products/1943472078.jpg?plain&size=600x600",
name: "ELLIS - Micro Pearl Link Chain",
price: 299,
star: 2,
shipping: "Free Shippingr"
}
]
let swipper_div12_second = document.querySelector("#div12_main>#div12_second>.mySwiper6>.swiper-wrapper")
const append_div12_second = (data) => {
data.forEach((el) => {
let div = document.createElement("div");
div.setAttribute("class", "swiper-slide");
div.onclick = ()=>{
localStorage.setItem("swiped_data",JSON.stringify(el))
window.location.href = "./items_detail.html"
}
let image = document.createElement("img");
image.src = el.image;
let name = document.createElement("h2")
name.innerText = el.name;
let price = document.createElement("p")
price.setAttribute("class", "div17_price")
price.innerText = el.price;
let div_star = document.createElement("div")
for (let i = 0; i < el.star; i++) {
let star = document.createElement("i")
star.setAttribute("class", "fa-solid fa-star")
div_star.append(star)
}
let ship = document.createElement("p");
ship.setAttribute("class", "div17_ship")
ship.innerText = el.shipping;
div.append(image, name, price, div_star, ship);
swipper_div12_second.append(div);
})
}
append_div12_second(div12_data)
var swiper = new Swiper(".mySwiper6", {
slidesPerView: 3,
spaceBetween: 30,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
// nikhil javascript part
// div14 js
let div14_data = [
{
image: "https://img.shop.com/Image/240000/248000/248061/products/1926693868.jpg?plain&size=600x600",
name: "22' Triple Stacked Pumpkins Thanksgiving Tabletop Decor",
price: 508,
star: 3,
shipping: "Free Shipping with 200 Rs. Order"
},
{
image: "https://www.shop.com/feo-cdn/U/h/vieWA9AJE.webp",
name: "Zulay Kitchen Knife Sharpener for Straight and Serrated Knives - Easy Manual Sharpening",
price: 2999,
star: 4,
shipping: "Free Shipping"
},
{
image: "https://www.shop.com/feo-cdn/j/S/acUqQaqg8.webp",
name: "Autumn Splendor - Two Pockets - Fall / Thanksgiving Wide Band Leggings",
price: 1999,
star: 4,
shipping: "Free Shipping with 4000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/X/b/koIw3oKTU.webp",
name: "Artificial Christmas Trees/Unlit Christmas Trees/6 and 6.5 Feet Tall Christmas Trees",
price: 5899,
star: 5,
shipping: "Free Shipping"
},
{
image: "https://www.shop.com/feo-cdn/b/Z/fmljIySmo.webp",
name: "Set of 3 Orange and White Pumpkin Spice Baking Set",
price: 3999,
star: 3,
shipping: "Free Shipping"
},
{
image: "https://www.shop.com/feo-cdn/5/4/o6KxJw2XU.webp",
name: "Smart Blonde Outdoor Decor Happy Fall Novelty Metal Arrow Sign A-182",
price: 699,
star: 5,
shipping: "Free Shipping with 200 Rs. Order"
},
]
let div14_extraArr = [
{
image: "https://img.shop.com/Image/240000/248000/248061/products/1926693868.jpg?plain&size=600x600",
name: "22' Triple Stacked Pumpkins Thanksgiving Tabletop Decor",
price: 508,
star: 3,
shipping: "Free Shipping with 200 Rs. Order"
},
{
image: "https://www.shop.com/feo-cdn/U/h/vieWA9AJE.webp",
name: "Zulay Kitchen Knife Sharpener for Straight and Serrated Knives - Easy Manual Sharpening",
price: 2999,
star: 4,
shipping: "Free Shipping"
},
{
image: "https://www.shop.com/feo-cdn/j/S/acUqQaqg8.webp",
name: "Autumn Splendor - Two Pockets - Fall / Thanksgiving Wide Band Leggings",
price: 1999,
star: 4,
shipping: "Free Shipping with 4000 Rs Order"
}
];
const div14_second = document.getElementById("div14_second")
const append_div14 = (data) => {
div14_second.innerHTML = null;
data.forEach(el => {
let div = document.createElement("div");
div.setAttribute("class", "div14_cards");
div.onclick = ()=>{
localStorage.setItem("swiped_data",JSON.stringify(el))
window.location.href = "./items_detail.html"
}
let image = document.createElement("img");
image.src = el.image;
let name = document.createElement("h2")
name.innerText = el.name;
let price = document.createElement("p")
price.setAttribute("class", "div14_price")
price.innerText = el.price;
let div_star = document.createElement("div")
for (let i = 0; i < el.star; i++) {
let star = document.createElement("i")
star.setAttribute("class", "fa-solid fa-star")
div_star.append(star)
}
let ship = document.createElement("p");
ship.setAttribute("class", "div14_ship")
ship.innerText = el.shipping;
div.append(image, name, price, div_star, ship);
div14_second.append(div);
});
}
append_div14(div14_extraArr);
// div 16 js
let div16_data = [
{
image: "https://www.shop.com/feo-cdn/i/t/FvbIz-y9U.webp",
name: "Isotonix OPC-3®",
price: 1499,
star: 4,
shipping: "Free Shipping with 1000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/P/b/dONaa4sVE.webp",
name: "Heart Health™ Essential Omega III Fish Oil with Vitamin E",
price: 1799,
star: 5,
shipping: "Free Shipping with 4000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/C/e/JgOnhFyg8.webp",
name: "Isotonix® Multivitamin Without Iron",
price: 2399,
star: 4,
shipping: "Free Shipping with 4000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/V/Q/MjsyMSVjg.webp",
name: "Isotonix® Activated B Complex",
price: 1299,
star: 3,
shipping: "Free Shipping with 4000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/M/L/jzRSTha98.webp",
name: "Isotonix® Vitamin D with K2",
price: 1899,
star: 5,
shipping: "Free Shipping with 4000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/m/Z/swKdMuBZc.webp",
name: "Probiotics-10",
price: 1199,
star: 4,
shipping: "Free Shipping with 4000 Rs Order"
}
]
let div16_extraArr = [
{
image: "https://www.shop.com/feo-cdn/i/t/FvbIz-y9U.webp",
name: "Isotonix OPC-3®",
price: 1499,
star: 4,
shipping: "Free Shipping with 1000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/P/b/dONaa4sVE.webp",
name: "Heart Health™ Essential Omega III Fish Oil with Vitamin E",
price: 1799,
star: 5,
shipping: "Free Shipping with 4000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/C/e/JgOnhFyg8.webp",
name: "Isotonix® Multivitamin Without Iron",
price: 2399,
star: 4,
shipping: "Free Shipping with 4000 Rs Order"
},
]
const div16_first = document.getElementById("div16_first")
const append_div16 = (data) => {
div16_first.innerHTML = null;
data.forEach(el => {
let div = document.createElement("div");
div.setAttribute("class", "div16_cards");
div.onclick = ()=>{
localStorage.setItem("swiped_data",JSON.stringify(el))
window.location.href = "./items_detail.html"
}
let image = document.createElement("img");
image.src = el.image;
let name = document.createElement("h2")
name.innerText = el.name;
let price = document.createElement("p")
price.setAttribute("class", "div16_price")
price.innerText = el.price;
let div_star = document.createElement("div")
for (let i = 0; i < el.star; i++) {
let star = document.createElement("i")
star.setAttribute("class", "fa-solid fa-star")
div_star.append(star)
}
let ship = document.createElement("p");
ship.setAttribute("class", "div16_ship")
ship.innerText = el.shipping;
div.append(image, name, price, div_star, ship);
div16_first.append(div);
});
}
append_div16(div16_extraArr);
let i = 1;
let n = 3;
setInterval(() => {
if (i == 4) {
i = 0;
}
div14_extraArr = [];
div16_extraArr = [];
for (let x = i; x < n + i; x++) {
div14_extraArr.push(div14_data[x]);
div16_extraArr.push(div16_data[x]);
}
i++;
append_div14(div14_extraArr);
append_div16(div16_extraArr);
}, 4000);
// div 17 js
let div17_data = [
{
image: "https://www.shop.com/feo-cdn/i/t/FvbIz-y9U.webp",
name: "Isotonix OPC-3®",
price: 1499,
star: 4,
shipping: "Free Shipping with 1000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/Z/K/W8b5TLOH8.webp",
name: "DNA Miracles Isotonix® Immune",
price: 1299,
star: 5,
shipping: "Free Shipping with 1000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/2/R/PseFpvzoc.webp",
name: "ClearShield® Maximum Protection and Hydration",
price: 1199,
star: 4,
shipping: "Free Shipping with 1000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/1/3/TWKLEddOs.webp",
name: "Snap™ All-Purpose Natural Concentrate",
price: 699,
star: 3,
shipping: "Free Shipping with 1000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/P/b/dONaa4sVE.webp",
name: "Heart Health™ Essential Omega III Fish Oil with Vitamin E",
price: 1799,
star: 5,
shipping: "Free Shipping with 4000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/2/8/LZoNORNQc.webp",
name: "Snap™ Heavy Duty Concentrate",
price: 799,
star: 4,
shipping: "Free Shipping with 1000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/B/S/jNm3AB9Ho.webp",
name: "Ultimate Aloe™",
price: 999,
star: 5,
shipping: "Free Shipping with 1000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/7/4/ipD1whsv0.webp",
name: "Snap™ Triple Enzyme 3X Laundry Detergent",
price: 499,
star: 5,
shipping: "Free Shipping with 1000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/M/L/jzRSTha98.webp",
name: "Isotonix® Vitamin D with K2",
price: 1899,
star: 5,
shipping: "Free Shipping with 4000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/n/A/QC1DKml1g.webp",
name: "Thymenol™",
price: 1399,
star: 3,
shipping: "Free Shipping with 1000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/F/Z/tLwzaZz8U.webp",
name: "Isotonix Essentials® Anti-Aging",
price: 1999,
star: 4,
shipping: "Free Shipping with 1000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/K/s/Fwi8vPHeE.webp",
name: "Isotonix® Complete Greens",
price: 2199,
star: 3,
shipping: "Free Shipping with 1000 Rs Order"
},
{
image: "https://www.shop.com/feo-cdn/C/e/JgOnhFyg8.webp",
name: "Isotonix® Multivitamin Without Iron",
price: 2399,
star: 4,
shipping: "Free Shipping with 4000 Rs Order"
}
]
let swipper_div = document.querySelector("#div17>#div17_main>.mySwiper>.swiper-wrapper")
const append_div17 = (data) => {
data.forEach((el) => {
let div = document.createElement("div");
div.setAttribute("class", "swiper-slide");
div.onclick = ()=>{
localStorage.setItem("swiped_data",JSON.stringify(el))
window.location.href = "./items_detail.html"
}
let image = document.createElement("img");
image.src = el.image;
let name = document.createElement("h2")
name.innerText = el.name;
let price = document.createElement("p")
price.setAttribute("class", "div17_price")
price.innerText = el.price;
let div_star = document.createElement("div")
for (let i = 0; i < el.star; i++) {
let star = document.createElement("i")
star.setAttribute("class", "fa-solid fa-star")
div_star.append(star)
}