forked from AnujShrivastava01/AnimateItNow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
1037 lines (902 loc) · 30.1 KB
/
about.html
File metadata and controls
1037 lines (902 loc) · 30.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>About | AnimateItNow</title>
<meta name="description" content="A comprehensive collection of CSS animation templates and effects for web developers" />
<!-- Apple Touch Icons -->
<!-- Fallback icon -->
<link rel="icon" type="image/png" href="images/logo.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css">
<!-- Add animation library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<style>
/* CSS Variables for Theming */
:root {
--primary: #6c63ff;
--primary-light: #8a84ff;
--primary-dark: #554fd8;
--secondary: #ff6584;
--accent: #36d1dc;
--text: #2a2a3c;
--text-light: #6c757d;
--bg: #ffffff;
--bg-secondary: #f8f9fa;
--bg-tertiary: #e9ecef;
--border: #dee2e6;
--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
--radius: 12px;
--transition: all 0.3s ease;
--header-height: 80px;
}
/* Dark Mode Variables */
.dark-theme {
--primary: #8a84ff;
--primary-light: #a8a4ff;
--primary-dark: #6c63ff;
--secondary: #ff8fa3;
--accent: #4dd0e1;
--text: #f8f9fa;
--text-light: #a0a0a0;
--bg: #121212;
--bg-secondary: #1e1e1e;
--bg-tertiary: #2a2a2a;
--border: #404040;
--shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
/* Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', 'Segoe UI', sans-serif;
line-height: 1.6;
color: var(--text);
background-color: var(--bg);
transition: var(--transition);
overflow-x: hidden;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
section {
padding: 100px 0;
}
h1, h2, h3, h4, h5 {
margin-bottom: 1rem;
line-height: 1.2;
font-weight: 700;
}
h1 {
font-size: 3.5rem;
}
h2 {
font-size: 2.5rem;
}
h3 {
font-size: 1.8rem;
}
p {
margin-bottom: 1.5rem;
color: var(--text-light);
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
.btn {
display: inline-block;
padding: 14px 32px;
background-color: var(--primary);
color: white;
border-radius: var(--radius);
font-weight: 600;
border: none;
cursor: pointer;
transition: var(--transition);
text-align: center;
position: relative;
overflow: hidden;
}
.btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: var(--transition);
}
.btn:hover::before {
left: 100%;
}
.btn:hover {
background-color: var(--primary-dark);
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}
.btn-secondary {
background-color: var(--secondary);
}
.btn-secondary:hover {
background-color: #e05574;
box-shadow: 0 10px 20px rgba(255, 101, 132, 0.3);
}
.btn-outline {
background-color: transparent;
border: 2px solid var(--primary);
color: var(--primary);
}
.btn-outline:hover {
background-color: var(--primary);
color: white;
}
/* Header/Navigation */
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: var(--header-height);
background-color: var(--bg);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
z-index: 999;
transition: var(--transition);
}
.dark-theme .navbar {
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.navbar.scrolled {
height: 70px;
background-color: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
}
.dark-theme .navbar.scrolled {
background-color: rgba(18, 18, 18, 0.95);
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
height: 100%;
}
.nav-left {
display: flex;
align-items: center;
}
.logo {
height: 40px;
margin-right: 10px;
}
.site-name {
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(to right, var(--primary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.nav-links {
display: flex;
list-style: none;
}
.nav-links li {
margin-left: 30px;
display: flex;
align-items: center;
}
.nav-links a {
color: var(--text);
font-weight: 500;
position: relative;
padding: 5px 0;
}
.nav-links a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: var(--primary);
transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
width: 100%;
}
/* About Page Styles */
.about-main {
padding-top: var(--header-height);
}
.about-header {
text-align: center;
padding: 100px 0 80px;
background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg) 100%);
}
.about-title {
font-size: 3.5rem;
margin-bottom: 20px;
position: relative;
}
.about-title span {
color: var(--primary);
position: relative;
}
.underline-accent {
display: block;
width: 100px;
height: 4px;
background: linear-gradient(to right, var(--primary), var(--accent));
margin: 10px auto 0;
border-radius: 2px;
}
.about-subtitle {
font-size: 1.3rem;
color: var(--text-light);
max-width: 600px;
margin: 0 auto;
}
.about-section {
padding: 80px 0;
display: flex;
align-items: center;
gap: 50px;
}
.about-section:nth-child(even) {
flex-direction: row-reverse;
background-color: var(--bg-secondary);
}
.about-icon {
font-size: 5rem;
flex-shrink: 0;
width: 150px;
height: 150px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary), var(--accent));
border-radius: 50%;
color: white;
box-shadow: var(--shadow);
}
.about-content {
flex: 1;
}
.about-content h2 {
margin-bottom: 20px;
}
.about-content h2 span {
color: var(--primary);
}
.stats-container {
display: flex;
justify-content: space-around;
margin-top: 40px;
}
.stat-item {
text-align: center;
}
.stat-number {
display: block;
font-size: 3rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 5px;
}
.stat-label {
font-size: 1rem;
color: var(--text-light);
}
.about-tech-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 20px;
margin-top: 30px;
}
.about-tech-item {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
background: var(--bg-secondary);
border-radius: var(--radius);
transition: var(--transition);
border: 1px solid var(--border);
}
.about-tech-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow);
}
.tech-icon {
width: 50px;
height: 50px;
margin-bottom: 10px;
}
.about-audience {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 30px;
}
.about-audience-item {
padding: 25px;
background: var(--bg-secondary);
border-radius: var(--radius);
transition: var(--transition);
border: 1px solid var(--border);
}
.about-audience-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow);
}
.about-audience-item h3 {
margin-bottom: 15px;
color: var(--primary);
}
.about-cta {
text-align: center;
padding: 100px 0;
background: linear-gradient(135deg, var(--primary), var(--accent));
color: white;
}
.about-cta h2 {
margin-bottom: 20px;
}
.about-cta h2 span {
color: #ffeb3b;
}
.about-cta p {
max-width: 700px;
margin: 0 auto 40px;
color: rgba(255, 255, 255, 0.9);
}
.about-button {
display: inline-block;
padding: 15px 35px;
background: white;
color: var(--primary);
border-radius: var(--radius);
font-weight: 600;
font-size: 1.1rem;
transition: var(--transition);
}
.about-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.cta-extra {
margin-top: 30px;
}
.editor-link {
color: #ffeb3b;
text-decoration: underline;
}
.editor-link:hover {
color: white;
}
/* Footer */
.footer {
background-color: var(--bg-secondary);
color: var(--text);
padding: 60px 0 30px;
position: relative;
border-top: 1px solid var(--border);
}
.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(to right, var(--primary), var(--accent));
}
.footer-content {
display: flex;
justify-content: space-between;
margin-bottom: 40px;
}
.footer-left h2 {
margin-bottom: 15px;
background: linear-gradient(to right, var(--primary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.footer-right h4 {
margin-bottom: 20px;
}
.footer-right ul {
list-style: none;
}
.footer-right li {
margin-bottom: 10px;
}
.footer-right a {
color: var(--text-light);
transition: var(--transition);
}
.footer-right a:hover {
color: var(--primary);
}
.footer-right a i {
margin-right: 10px;
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid var(--border);
color: var(--text-light);
font-size: 0.9rem;
}
.footer-bottom .highlight {
color: var(--primary);
font-weight: 600;
}
/* Scroll to top button */
#scrollBtn {
display: none;
position: fixed;
bottom: 30px;
right: 30px;
z-index: 99;
border: none;
outline: none;
background-color: var(--primary);
color: white;
cursor: pointer;
padding: 15px;
border-radius: 50%;
font-size: 18px;
width: 50px;
height: 50px;
box-shadow: var(--shadow);
transition: var(--transition);
}
#scrollBtn:hover {
background-color: var(--primary-dark);
transform: translateY(-3px);
}
/* Animated background elements */
.animated-background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}
.floating-element {
position: absolute;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--accent));
opacity: 0.1;
animation: float 15s infinite linear;
}
.floating-element-1 {
width: 200px;
height: 200px;
top: 10%;
left: 10%;
animation-delay: 0s;
}
.floating-element-2 {
width: 150px;
height: 150px;
top: 60%;
right: 10%;
animation-delay: 5s;
}
.floating-element-3 {
width: 100px;
height: 100px;
bottom: 20%;
left: 20%;
animation-delay: 10s;
}
@keyframes float {
0% {
transform: translate(0, 0) rotate(0deg);
}
33% {
transform: translate(30px, -50px) rotate(120deg);
}
66% {
transform: translate(-20px, 20px) rotate(240deg);
}
100% {
transform: translate(0, 0) rotate(360deg);
}
}
/* Responsive Design */
@media (max-width: 992px) {
.about-section {
flex-direction: column;
text-align: center;
gap: 30px;
}
.about-section:nth-child(even) {
flex-direction: column;
}
.about-icon {
width: 120px;
height: 120px;
font-size: 4rem;
}
.stats-container {
flex-direction: column;
gap: 30px;
}
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
.about-title {
font-size: 2.5rem;
}
.footer-content {
flex-direction: column;
gap: 40px;
}
.about-audience {
grid-template-columns: 1fr;
}
}
@media (max-width: 576px) {
.about-title {
font-size: 2rem;
}
.about-subtitle {
font-size: 1.1rem;
}
section {
padding: 60px 0;
}
.about-section {
padding: 60px 0;
}
}
</style>
</head>
<body>
<nav class="navbar">
<div class="container nav-container">
<div class="nav-left">
<a href="index.html" class="home-link">
<span class="site-name">Animate It Now</span>
</a>
</div>
<div class="nav-right">
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About</a></li>
<li><a href="editor.html" target="_blank">Editor</a></li>
<li><a href="templates.html">Templates</a></li>
<li><a href="playground.html" style="white-space: nowrap">Hover-Effects</a></li>
<li><a href="contributors.html">Contributors</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="leaderboard.html">Leaderboard</a></li>
<!-- github icon -->
<li>
<a href="https://github.com/itsAnimation/AnimateItNow"
target="_blank"
rel="noopener noreferrer"
aria-label="GitHub Repo"
class="github-icon">
<svg viewBox="0 0 16 16" width="24" height="24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47
7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49
-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13
-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82
.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07
-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15
-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82
.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27
1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12
.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95
.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2
0 .21.15.46.55.38A8.01 8.01 0 0016 8c0-4.42-3.58-8-8-8z"/>
</svg>
</a>
</li>
<li>
<button id="theme-toggle" aria-label="Toggle Theme">
<i class="fas fa-moon"></i>
</button>
</li>
</ul>
</div>
</div>
</nav>
<!-- Animated background elements -->
<div class="animated-background">
<div class="floating-element floating-element-1"></div>
<div class="floating-element floating-element-2"></div>
<div class="floating-element floating-element-3"></div>
</div>
<main class="about-main">
<section class="about-header animate__animated animate__fadeInDown" role="banner" aria-label="About AnimateItNow Header">
<div class="container">
<h1 class="about-title">
About <span class="animate-text">AnimateItNow</span>
<span class="underline-accent" aria-hidden="true"></span>
</h1>
<p class="about-subtitle animate__animated animate__fadeInUp animate__delay-1s">A creative platform for beautiful web animations</p>
</div>
</section>
<section class="about-section scroll-fade animate-section">
<div class="container" style="display: flex; align-items: center; gap: 50px;">
<div class="about-icon animate__animated animate__bounceIn">🎯</div>
<div class="about-content">
<h2 class="animate__animated animate__fadeInLeft">Our Mission</h2>
<p class="animate__animated animate__fadeInUp animate__delay-1s">
At <strong>AnimateItNow</strong>, we empower web developers of all skill levels by providing <em>easy-to-use animation templates</em> that bring projects to life with interactivity and style.
</p>
<p class="animate__animated animate__fadeInUp animate__delay-2s">
This open-source platform fosters collaboration and creativity, offering a vibrant community where you can share, discover, and contribute stunning web UI components. Join us to build, learn, and inspire!
</p>
<!-- Interactive counter elements -->
<div class="stats-container animate__animated animate__fadeInUp animate__delay-3s">
<div class="stat-item">
<span class="stat-number" data-count="1000">0</span>
<span class="stat-label">Animations</span>
</div>
<div class="stat-item">
<span class="stat-number" data-count="500">0</span>
<span class="stat-label">Contributors</span>
</div>
<div class="stat-item">
<span class="stat-number" data-count="50000">0</span>
<span class="stat-label">Users</span>
</div>
</div>
</div>
</div>
</section>
<section class="about-section scroll-fade animate-section">
<div class="container" style="display: flex; align-items: center; gap: 50px;">
<div class="about-icon animate__animated animate__bounceIn">💻</div>
<div class="about-content">
<h2 class="animate__animated animate__fadeInLeft">Technologies <span>We Use</span></h2>
<div class="about-tech-list">
<div class="about-tech-item animate__animated animate__fadeInUp" data-animate-delay="0">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-original.svg" alt="HTML5" class="tech-icon" />
<span>HTML5</span>
</div>
<div class="about-tech-item animate__animated animate__fadeInUp" data-animate-delay="1">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/css3/css3-original.svg" alt="CSS3" class="tech-icon" />
<span>CSS3</span>
</div>
<div class="about-tech-item animate__animated animate__fadeInUp" data-animate-delay="2">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg" alt="JavaScript" class="tech-icon" />
<span>JavaScript</span>
</div>
<div class="about-tech-item animate__animated animate__fadeInUp" data-animate-delay="3">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/git/git-original.svg" alt="Git" class="tech-icon" />
<span>Git</span>
</div>
</div>
</div>
</div>
</section>
<section class="about-section scroll-fade animate-section">
<div class="container" style="display: flex; align-items: center; gap: 50px;">
<div class="about-icon animate__animated animate__bounceIn">📢</div>
<div class="about-content">
<h2 class="animate__animated animate__fadeInLeft">For <span>Everyone</span></h2>
<div class="about-audience">
<div class="about-audience-item animate__animated animate__fadeInUp" data-animate-delay="0">
<h3>👶 Beginners</h3>
<p>Learn confidently with clear, simple, and well-documented examples that guide you step-by-step.</p>
</div>
<div class="about-audience-item animate__animated animate__fadeInUp" data-animate-delay="1">
<h3>💻 Developers</h3>
<p>Utilize production-ready, modular components designed to save you time and streamline your workflow.</p>
</div>
<div class="about-audience-item animate__animated animate__fadeInUp" data-animate-delay="2">
<h3>🎨 Designers</h3>
<p>Find fresh inspiration and beautifully crafted animations for your next creative project.</p>
</div>
<div class="about-audience-item animate__animated animate__fadeInUp" data-animate-delay="3">
<h3>🧠 Content Creators</h3>
<p>Bring your ideas to life with engaging animations for videos, websites, and interactive media.</p>
</div>
</div>
</div>
</div>
</section>
<section class="about-section scroll-fade animate-section">
<div class="container" style="display: flex; align-items: center; gap: 50px;">
<div class="about-icon animate__animated animate__bounceIn">🚀</div>
<div class="about-content">
<h2 class="animate__animated animate__fadeInLeft">Why Choose <span>AnimateItNow?</span></h2>
<p class="intro-text animate__animated animate__fadeInUp animate__delay-1s">
AnimateItNow empowers you with cutting-edge, easy-to-use animation tools designed to accelerate your development workflow and elevate your web projects with stunning visuals.
</p>
<div class="about-audience">
<div class="about-audience-item animate__animated animate__fadeInUp" data-animate-delay="0">
<h3>⚡ Lightning-Fast Integration</h3>
<p>Drop animations into your project in seconds — no setup, no dependencies, just pure CSS and JavaScript magic ready to go. Build faster, ship sooner.</p>
</div>
<div class="about-audience-item animate__animated animate__fadeInUp" data-animate-delay="1">
<h3>🧑💻 Friendly for All Skill Levels</h3>
<p>Whether you're a beginner learning the ropes or a seasoned dev under deadline, our intuitive templates and detailed docs let you focus on building — not debugging.</p>
</div>
<div class="about-audience-item animate__animated animate__fadeInUp" data-animate-delay="2">
<h3>🎨 Pixel-Perfect & Responsive UI</h3>
<p>Modern, responsive animation components crafted for today's web — fluid across devices, smooth across browsers, and delightful to users.</p>
</div>
<div class="about-audience-item animate__animated animate__fadeInUp" data-animate-delay="3">
<h3>🛠️ Built for Real Projects</h3>
<p>Every animation is modular, scalable, and production-ready — perfect for portfolios, landing pages, dashboards, and everything in between.</p>
</div>
<div class="about-audience-item animate__animated animate__fadeInUp" data-animate-delay="4">
<h3>🌍 Open-Source & Community Powered</h3>
<p>Join hundreds of contributors shaping the future of web animation. Collaborate, learn, and inspire — one pull request at a time.</p>
</div>
<div class="about-audience-item animate__animated animate__fadeInUp" data-animate-delay="5">
<h3>🚀 Continuous Innovation & Updates</h3>
<p>We're committed to evolving with the web. Expect regular updates, new animation effects, and cutting-edge features driven by community feedback and modern web trends.</p>
</div>
</div>
</div>
</div>
</section>
<section class="about-cta scale-in animate__animated animate__pulse animate__infinite">
<div class="container">
<h2 class="animate__animated animate__fadeInUp">🌟 Ready to <span>Contribute?</span></h2>
<p class="animate__animated animate__fadeInUp animate__delay-1s">
Collaborate, learn, and build with a passionate community of developers and designers. From bug fixes to full-blown features — every contribution counts!
</p>
<a href="https://github.com/itsAnimation/AnimateItNow/" target="_blank" rel="noopener noreferrer" class="about-button pulse animate__animated animate__bounceIn animate__delay-2s" aria-label="Join AnimateItNow on GitHub">
🚀 Join Us on GitHub
</a>
<!-- Additional interactive element -->
<div class="cta-extra animate__animated animate__fadeInUp animate__delay-3s">
<p>Or try our <a href="editor.html" class="editor-link">Animation Editor</a> to create your own animations!</p>
</div>
</div>
</section>
</main>
<footer class="footer scroll-fade">
<div class="container">
<div class="footer-content">
<div class="footer-left">
<h2>AnimateItNow</h2>
<p>Creating impactful web animations and templates for everyone.</p>
</div>
<div class="footer-right">
<h4>Connect With Us</h4>
<ul>
<li><a href="https://github.com/itsAnimation/AnimateItNow" target="_blank" rel="noopener noreferrer"><i class="fab fa-github fa-beat"></i> GitHub</a></li>
<li><a href="https://www.linkedin.com/in/anujshrivastava1/" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin fa-beat"></i> LinkedIn</a></li>
<li><a href="mailto:contact@animateitnow.com" rel="noopener noreferrer"><i class="fas fa-envelope fa-beat"></i> Email Us</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 AnimateItNow. Made with ❤️ by <span class="highlight">Anuj</span> and Contributors.</p>
</div>
</div>
</footer>
<button onclick="scrollToTop()" id="scrollBtn" title="Go to top">↑</button>
<script>
// Theme toggle functionality
const themeToggle = document.getElementById('theme-toggle');
const body = document.body;
function setTheme(isDark) {
const icon = themeToggle.querySelector('i');
body.classList.toggle('dark-theme', isDark);
localStorage.setItem('theme', isDark ? 'dark' : 'light');
if (icon) {
icon.className = isDark ? 'fas fa-sun' : 'fas fa-moon';
}
}
const savedTheme = localStorage.getItem('theme');
const prefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
setTheme(savedTheme === 'dark' || (savedTheme === null && prefersDark));
themeToggle?.addEventListener('click', () => {
setTheme(!body.classList.contains('dark-theme'));
});
// Scroll to top functionality
function scrollToTop() {
window.scrollTo({ top: 0, behavior: 'smooth' });
}
window.onscroll = function() {
const scrollBtn = document.getElementById("scrollBtn");
if (document.body.scrollTop > 300 || document.documentElement.scrollTop > 300) {
scrollBtn.style.display = "block";
} else {
scrollBtn.style.display = "none";
}
};
// Animated counter
function animateCounter() {
const counters = document.querySelectorAll('.stat-number');
const speed = 200;
counters.forEach(counter => {
const target = +counter.getAttribute('data-count');
const count = +counter.innerText;
const increment = target / speed;
if (count < target) {
counter.innerText = Math.ceil(count + increment);
setTimeout(() => animateCounter(), 1);
} else {
counter.innerText = target.toLocaleString();
}
});
}
// Intersection Observer for animations
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate__animated');
// Add specific animations based on data attributes
const delay = entry.target.dataset.animateDelay;
if (delay !== undefined) {
entry.target.style.animationDelay = `${delay * 0.2}s`;
}
// Animate counters when stats section is in view
if (entry.target.classList.contains('stats-container')) {
animateCounter();
}
}
});
}, observerOptions);
// Observe elements with animations
document.addEventListener('DOMContentLoaded', function() {
// Observe sections for animation
const sections = document.querySelectorAll('.animate-section');
sections.forEach(section => {
observer.observe(section);
});