-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
822 lines (759 loc) · 28.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="./graphics/favicon_io/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./graphics/favicon_io/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./graphics/favicon_io/favicon-16x16.png"
/>
<link rel="manifest" href="/site.webmanifest" />
<!-- ----------------- Font ------------------ -->
<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=Lato:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<!-- --------------- Glide Css --------------- -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/Glide.js/3.4.1/css/glide.core.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/Glide.js/3.4.1/css/glide.theme.min.css"
/>
<!-- ------------- Main Css -------------- -->
<link rel="stylesheet" href="./dist/main.css" />
<title>Greendy | Landing page</title>
</head>
<body>
<!-- ##################################### -->
<!-- HEADER -->
<!-- ##################################### -->
<header class="wrap flx">
<div class="logo">
<a href="#">
<img src="./graphics/logo/logo-greendy.png" alt="greendy logo"
/></a>
</div>
<input type="checkbox" id="menu_checkbox" />
<label for="menu_checkbox">
<div></div>
<div></div>
<div></div>
</label>
<nav class="main__nav flx">
<ul class="main__ul flx">
<li><a href="#who">Who we are</a></li>
<li class="dropdown">
<a href="#we">what we do</a>
<i class="fa-solid fa-angle-down"></i>
<ul class="dropdown-content">
<li>
<a href="#" class="dropdown__grid">
<img
src="./graphics/icons/Header/laptop.svg"
alt="arrow right"
/>
<span class="dropdown__p">
<p>Design</p>
<p>create and develope your brand</p>
</span>
<img
src="./graphics/icons/Header/right arrow-green.svg"
alt="arrow right"
/>
</a>
</li>
<li>
<a href="#" class="dropdown__grid">
<img src="./graphics/icons/Header/ad.svg" alt="arrow right" />
<span class="dropdown__p">
<p>Digital and advertising</p>
<p>we grow your online visibility</p>
</span>
<img
src="./graphics/icons/Header/right arrow-green.svg"
alt="arrow right"
/>
</a>
</li>
<li>
<a href="#" class="dropdown__grid">
<img
src="./graphics/icons/Header/seo.svg"
alt="arrow right"
/>
<span class="dropdown__p">
<p>seo</p>
<p>we grow your website position</p>
</span>
<img
src="./graphics/icons/Header/right arrow-green.svg"
alt="arrow right"
/>
</a>
</li>
<li>
<a href="#" class="dropdown__grid">
<img
src="./graphics/icons/Header/social.svg"
alt="arrow right"
/>
<span class="dropdown__p">
<p>social media</p>
<p>we manage social media</p>
</span>
<img
src="./graphics/icons/Header/right arrow-green.svg"
alt="arrow right"
/>
</a>
</li>
</ul>
</li>
<li><a href="#testimonial">reviews</a></li>
<li><a href="#blog">blog</a></li>
</ul>
<!-- modal btn| will open and close modal window also btn in nav -->
<div class="nav__btn xd__btn xd__btn__hover">
<a href="#"
>Get your website review
<img src="./graphics/icons/right arrow.svg" alt="arrow svg icon" />
</a>
</div>
<!-- modal btn ends -->
<!-- ----------------- Modal ----------------- -->
<div class="modal-wrapper">
<div class="modal">
<div class="modal-header">
<h2>Get Your Free Website Checkup</h2>
<p>
Discover main benefits and issues of your website and how to fix
them.
</p>
<button class="close-modal">×</button>
</div>
<div class="modal-content">
<!-- Modal content goes here -->
<form action="">
<div class="card">
<div class="row">
<div class="col">
<div class="form-group">
<label>First Name</label>
<input type="text" placeholder="first name" required />
</div>
</div>
<div class="col">
<div class="form-group">
<label>Email address</label>
<input
type="text"
placeholder="Email address"
required
/>
</div>
</div>
<div class="col">
<div class="form-group">
<label>Phone Number</label>
<input type="text" placeholder="Phone Number" />
</div>
</div>
<div class="col">
<div class="form-group">
<label>Website url</label>
<input type="text" placeholder="Website url" />
</div>
</div>
<div class="col__long1">
<div class="form-group">
<label>Message</label>
<textarea placeholder="Message..."></textarea>
</div>
</div>
<div class="col__long2">
<input
type="submit"
value=" Get my free checkup"
class="btn__submit xd__btn xd__btn__hover"
/>
</div>
</div>
</div>
</form>
<!-- ------ Modal content Ends ------- -->
</div>
</div>
</div>
<!-- ----------- Modal Ends ------------ -->
<!-- -------- Theme Switcher --------- -->
<label class="switch">
<input type="checkbox" id="dark-mode-toggle" />
<span class="slider"></span>
</label>
</nav>
</header>
<!-- -------------- Header Ends -------------- -->
<!-- ######################################### -->
<!-- HERO -->
<!-- ######################################### -->
<main>
<section id="hero">
<div class="hero wrap">
<div class="hero__content content">
<span class="xd__p">Award winning company</span>
<h1>
Empowering your online growth with digital marketing and design
</h1>
<p>
We focused on growing your business online with custom solutions
and expert strategies, we help you stand out in the crowded online
space and achieve your growth goals.
</p>
<a href="#" class="hero__btn xd__btn__hover xd__btn--pry"
>Start a Project</a
>
</div>
<div class="hero__graphic">
<img src="./graphics/hero/hero-bg.png" alt="" />
</div>
</div>
</section>
</main>
<!-- --------------- Hero Ends --------------- -->
<!-- ######################################### -->
<!-- CLIENTS -->
<!-- ######################################### -->
<section id="clients">
<div class="clients__logo flx wrap">
<img src="./graphics/clients/logo-1.png" alt="" />
<img src="./graphics/clients/logo-2.png" alt="" />
<img src="./graphics/clients/logo-3.png" alt="" />
<img src="./graphics/clients/logo-4.png" alt="" />
<img src="./graphics/clients/logo-5.png" alt="" />
</div>
</section>
<!-- ######################################### -->
<!-- WHO WE ARE -->
<!-- ######################################### -->
<section id="who">
<div class="who wrap">
<div class="who__content content">
<span class="xd__p">Who we are</span>
<h2>Top #1 marketing agency in the world</h2>
<p>
We are the world's leading marketing agency, dedicated to delivering
exceptional results for our clients. With our expertise and passion
for innovation, we help businesses thrive and achieve success.
</p>
<a href="#" class="who__btn xd__btn__hover xd__btn--pry"
>Get in Touch</a
>
</div>
<div class="hero__graphic">
<img src="./graphics/who-we-are/bg.png" alt="" />
</div>
</div>
</section>
<!-- ######################################### -->
<!-- WHY CHOOSE US -->
<!-- ######################################### -->
<section id="why">
<h2 class="why__title">
Why top Ecommerce and startup companies choose us :
</h2>
<div class="container wrap">
<div class="box box-1">
<img src="./graphics/why-choose-us/img-1.png" alt="" />
<h3>We are commerce first</h3>
<p>We are improving businesses based on our vast experience.</p>
</div>
<div class="box box-2">
<img src="./graphics/why-choose-us/img-2.png" alt="" />
<h3>We are commerce first</h3>
<p>We are improving businesses based on our vast experience.</p>
</div>
<div class="box box-3">
<img src="./graphics/why-choose-us/img-3.png" alt="" />
<h3>We are commerce first</h3>
<p>We are improving businesses based on our vast experience.</p>
</div>
<div class="box box-4">
<img src="./graphics/why-choose-us/img-4.png" alt="" />
<h3>We are commerce first</h3>
<p>We are improving businesses based on our vast experience.</p>
</div>
<div class="graphic">
<img src="./graphics/why-choose-us/bg.png" alt="" />
</div>
<div class="why__cta">
<a href="#" class="why__btn xd__btn--pry xd__btn__hover">
lets chat
<img src="./graphics/icons/right arrow.svg" alt="arrow svg icon" />
</a>
</div>
</div>
</section>
<!-- ######################################### -->
<!-- NUMBERS -->
<!-- ######################################### -->
<section id="number">
<div class="number wrap">
<h2>The proofs is in the numbers</h2>
<div class="number__wrap">
<span class="number__count"
>+534%
<p>People Reached</p>
</span>
<span class="number__count"
>+215%
<p>client boosts</p>
</span>
<span class="number__count"
>+801%
<p>Company Expansion</p>
</span>
<span class="number__count"
>+379%
<p>website launches</p>
</span>
</div>
</div>
</section>
<!-- ######################################### -->
<!-- WHAT WE DO -->
<!-- ######################################### -->
<section id="we">
<div class="we wrap">
<div class="we__heading">
<h2>What We Do</h2>
<p>
We are flexible and cope with multiple tasks to make you a leader in
the market.
</p>
</div>
<div class="we__grid">
<div class="we__graphic">
<img src="./graphics/what-we-do/bg-1.png" alt="" />
</div>
<div class="we__title">
<h2>Good Design Increases Sales</h2>
</div>
<div class="service we__box-1">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>Strategy & Research</h3>
<p>
Based on deep researching we create the best strategy due to your
needs.
</p>
</div>
<div class="service we__box-2">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>Development</h3>
<p>We create the best solution relying on own platforms.</p>
</div>
<div class="service we__box-3">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>Strategy & visual design</h3>
<p>
It is possible to see the future result with the prognosticate
ground plan.
</p>
</div>
<div class="service we__box-4">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>Conversion optimization</h3>
<p>
We teach your call-center team how to talk efficiently to your
clients.
</p>
</div>
</div>
<!-- ------------------ 2 ------------------ -->
<div class="we__grid gird-2">
<div class="we__title">
<h2>Get More Customers with Google Ads</h2>
</div>
<div class="service we__box-1">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>Campaign developmenth</h3>
<p>
Create your unique advertisement easily without extra time or
money.
</p>
</div>
<div class="service we__box-2">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>Campaign launch</h3>
<p>
Start your commerce with the social media announcement. Get more
client without much effort.
</p>
</div>
<div class="service we__box-3">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>Optimization</h3>
<p>
Save your money with the simple upgrades and enjoy your profit
instantly.
</p>
</div>
<div class="service we__box-4">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>Measurement</h3>
<p>
Discover the website activity with the analytics tools simply and
unmistakably.
</p>
</div>
<div class="we__graphic">
<img src="./graphics/what-we-do/bg-2.png" alt="" />
</div>
</div>
<!-- ------------------- 3 ------------------- -->
<div class="we__grid">
<div class="we__graphic">
<img src="./graphics/what-we-do/bg-3.png" alt="" />
</div>
<div class="we__title">
<h2>Show Up when People Search for What You Sell</h2>
</div>
<div class="service we__box-1">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>SEO audit</h3>
<p>
Analyze your next steps and in which way it will have impact on
the selling results.
</p>
</div>
<div class="service we__box-2">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>On-page SEO</h3>
<p>
Optimize every word on your page for increasing the sales and
reach the top of Google searching.
</p>
</div>
<div class="service we__box-3">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>Targeted content</h3>
<p>
The targeting content helps you to push ahead less popular
categories of goods.
</p>
</div>
<div class="service we__box-4">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>Off-page SEO</h3>
<p>
This strategy helps you to increase the trust level to your online
store.
</p>
</div>
</div>
<!-- ------------------- 4 ------------------- -->
<div class="we__grid gird-2">
<div class="we__title">
<h2>Grow Your Business with Social Media</h2>
</div>
<div class="service we__box-1">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>Authentic storytelling</h3>
<p>
Tell your clients which were your first steps and failures in this
business.
</p>
</div>
<div class="service we__box-2">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>Optimized ads</h3>
<p>
Optimize every word on your page for increasing the sales and
reach the top of Google searching.
</p>
</div>
<div class="service we__box-3">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>Community Engagement</h3>
<p>Develop business with similar companies or partners.</p>
</div>
<div class="servicewe__box-4">
<img src="./graphics/what-we-do/box1_icon-1.png" alt="" />
<h3>Fostering Growth</h3>
<p>
The accent on social media activities increases the number of your
clients.
</p>
</div>
<div class="we__graphic">
<img src="./graphics/what-we-do/bg-4.png" alt="" />
</div>
</div>
</div>
</section>
<!-- ######################################### -->
<!-- BLOG -->
<!-- ######################################### -->
<section id="blog">
<div class="wrap">
<div class="blog__title">
<h2>Why you need multiple marketing strategies</h2>
<p>Choose your best ecommerce store</p>
</div>
<div class="blog__grid">
<!-- ------------------ 1 ------------------ -->
<div class="article post-1">
<img src="./graphics/blog/post-1.png" alt="" />
<p class="xd__p">Marketing</p>
<a href="">
<h2>Online marketing step by step</h2>
</a>
<p>
Expert guidance for successful online marketing. Follow us for
step-by-step strategies to grow your business...
</p>
<a href="#" class="blog__btn xd__btn--pry xd__btn__hover"
>Read more
<img
src="./graphics/icons/right arrow.svg"
alt="arrow svg icon"
/>
</a>
</div>
<!-- ------------------- 2 ------------------- -->
<div class="article post-2">
<img src="./graphics/blog/post-2.png" alt="" />
<p class="xd__p">Design</p>
<a href="">
<h2>Digital Design Trends to Watch in 2023</h2>
</a>
<p>
Stay ahead of the curve with our expert analysis of the top
digital design trends to watch for in 2023...
</p>
<a href="#" class="blog__btn xd__btn--pry xd__btn__hover"
>Read more
<img
src="./graphics/icons/right arrow.svg"
alt="arrow svg icon"
/>
</a>
</div>
<!-- ------------------- 3 ------------------- -->
<div class="article post-3">
<img src="./graphics/blog/post-3.png" alt="" />
<p class="xd__p">Marketing</p>
<a href="">
<h2>Mastering Social Media for Business</h2>
</a>
<p>
Get the most out of your social media marketing efforts with our
expert tips and insights...
</p>
<a href="#" class="blog__btn xd__btn--pry xd__btn__hover"
>Read more
<img
src="./graphics/icons/right arrow.svg"
alt="arrow svg icon"
/>
</a>
</div>
</div>
</div>
</section>
<!-- ######################################### -->
<!-- TESTIMONIAL -->
<!-- ######################################### -->
<section id="testimonial">
<div class="wrap">
<div class="testimonal__title">
<h2>What our client say</h2>
<p>
We are flexible and cope with multiple tasks to make you a leader in
the market.
</p>
</div>
<div class="testimonial">
<div class="glide" id="options-autoplay">
<div class="glide__track" data-glide-el="track">
<ul class="glide__slides">
<li class="glide__slide">
<!-- ------------------ 1 ------------------ -->
<div class="review clinet-1">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Etiam urna, tempor in penatibus ullamcorper. In quis purus
pharetra scelerisque sed id eleifend erat. Integer
imperdiet nullam eget lectus. Fames urna, ut lacus, et eu
nunc integer consequat.
</p>
<img src="./graphics/testimonial/profile-img.jpg" alt="" />
<div class="client__detail">
<p>name</p>
<p>job title</p>
</div>
</div>
</li>
<li class="glide__slide">
<!-- ------------------- 2 ------------------- -->
<div class="review clinet-2">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Etiam urna, tempor in penatibus ullamcorper. In quis purus
pharetra scelerisque sed id eleifend erat. Integer
imperdiet nullam eget lectus. Fames urna, ut lacus, et eu
nunc integer consequat.
</p>
<img src="./graphics/testimonial/profile-img.jpg" alt="" />
<div class="client__detail">
<p>name</p>
<p>job title</p>
</div>
</div>
</li>
<li class="glide__slide">
<!-- ------------------ 3 ------------------ -->
<div class="review clinet-3">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Etiam urna, tempor in penatibus ullamcorper. In quis purus
pharetra scelerisque sed id eleifend erat. Integer
imperdiet nullam eget lectus. Fames urna, ut lacus, et eu
nunc integer consequat.
</p>
<img src="./graphics/testimonial/profile-img.jpg" alt="" />
<div class="client__detail">
<p>name</p>
<p>job title</p>
</div>
</div>
</li>
<li class="glide__slide">
<!-- ------------------ 4 ------------------ -->
<div class="review clinet-4">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Etiam urna, tempor in penatibus ullamcorper. In quis purus
pharetra scelerisque sed id eleifend erat. Integer
imperdiet nullam eget lectus. Fames urna, ut lacus, et eu
nunc integer consequat.
</p>
<img src="./graphics/testimonial/profile-img.jpg" alt="" />
<div class="client__detail">
<p>name</p>
<p>job title</p>
</div>
</div>
</li>
</ul>
</div>
</div>
<input
type="range"
id="options-autoplay-input"
min="0"
max="5000"
value="3000"
/>
</div>
</div>
</section>
<!-- ##################################### -->
<!-- FOOTER -->
<!-- ##################################### -->
<footer>
<section id="footer " class="wrap">
<div class="footer__content">
<div class="footer__logo">
<img src="./graphics/logo/logo-greendy.png" alt="" />
<p>
We focused on growing your business online With custom solutions
and expert strategies, we help you stand out in the crowded online
space and achieve your growth goals.
</p>
</div>
<div class="footer__menu">
<p>Menu</p>
<ul class="footer__ul flx">
<li><a href="#">Who we are</a></li>
<li><a href="#">what we do</a></li>
<li><a href="#">reviews</a></li>
<li><a href="#">blog</a></li>
</ul>
</div>
<div class="contact">
<p>contact</p>
<a href="">+1 (875) 40 1027</a>
<a href="">Support@company.com</a>
</div>
<div class="social-media">
<img src="./graphics/footer/ig.png" alt="" />
<img src="./graphics/footer/fb.png" alt="" />
<img src="./graphics/footer/tw.png" alt="" />
</div>
</div>
<!-- ---------- Copyright ---------- -->
<div class="copyrights">
<p>Copyright 2021 Greendy All Right Reserve</p>
<div class="footer__links">
<a href="#">Term of use</a>
<a href="#">Privacy Policy</a>
</div>
</div>
</section>
</footer>
<!-- -------------- Footer Ends -------------- -->
<!-- ######################################### -->
<!-- SCRIPTS -->
<!-- ######################################### -->
<!-- ---------------- Main Js ---------------- -->
<script src="./dist/script.js"></script>
<!-- ------------ Font Awesome ------------ -->
<script
src="https://kit.fontawesome.com/1156e9b158.js"
crossorigin="anonymous"
></script>
<!-- ------------- Glide Js -------------- -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Glide.js/3.4.1/glide.min.js"></script>
<script>
new Glide(".glide").mount();
var input = document.querySelector("#options-autoplay-input");
var glide = new Glide("#options-autoplay", {
autoplay: input.value,
hoverpause: true,
perView: 2,
focusAt: "center",
breakpoints: {
800: {
perView: 1,
},
},
});
input.addEventListener("input", function (event) {
glide.update({
autoplay: event.target.value != 0 ? event.target.value : false,
});
});
glide.mount();
</script>
<!-- ----------- Glide Js Ends ----------- -->
</body>
</html>