sujalrajpoot commited on
Commit
60e1e68
·
verified ·
1 Parent(s): 2878c1f

Delete templates/static/script.js

Browse files
Files changed (1) hide show
  1. templates/static/script.js +0 -369
templates/static/script.js DELETED
@@ -1,369 +0,0 @@
1
- // Wait for DOM content to load
2
- document.addEventListener('DOMContentLoaded', function() {
3
- // Loading screen functionality
4
- const loadingScreen = document.querySelector('.loading-screen');
5
-
6
- // Hide loading screen after 2 seconds
7
- setTimeout(() => {
8
- loadingScreen.classList.add('hidden');
9
- }, 2000);
10
-
11
- // Mobile menu toggle
12
- const menuToggle = document.querySelector('.menu-toggle');
13
- const navLinks = document.querySelector('.nav-links');
14
-
15
- menuToggle.addEventListener('click', function() {
16
- navLinks.classList.toggle('active');
17
- });
18
-
19
- // Close mobile menu when clicking outside
20
- document.addEventListener('click', function(event) {
21
- const isClickInsideNav = navLinks.contains(event.target);
22
- const isClickOnToggle = menuToggle.contains(event.target);
23
-
24
- if (!isClickInsideNav && !isClickOnToggle && navLinks.classList.contains('active')) {
25
- navLinks.classList.remove('active');
26
- }
27
- });
28
-
29
- // Header scroll effect
30
- const header = document.querySelector('header');
31
-
32
- window.addEventListener('scroll', function() {
33
- if (window.scrollY > 50) {
34
- header.classList.add('scrolled');
35
- } else {
36
- header.classList.remove('scrolled');
37
- }
38
- });
39
-
40
- // Animate stats counter
41
- const stats = document.querySelectorAll('.stat-number');
42
-
43
- const animateStats = () => {
44
- stats.forEach(stat => {
45
- const target = parseInt(stat.getAttribute('data-target'));
46
- const count = +stat.innerText;
47
- const increment = target / 100;
48
-
49
- if (count < target) {
50
- stat.innerText = Math.ceil(count + increment);
51
- setTimeout(animateStats, 30);
52
- } else {
53
- stat.innerText = target;
54
- }
55
- });
56
- };
57
-
58
- // Intersection Observer for animations
59
- const observerOptions = {
60
- threshold: 0.1
61
- };
62
-
63
- const observer = new IntersectionObserver(function(entries, observer) {
64
- entries.forEach(entry => {
65
- if (entry.isIntersecting) {
66
- if (entry.target.classList.contains('hero-stats')) {
67
- stats.forEach(stat => {
68
- stat.innerText = '0';
69
- });
70
- animateStats();
71
- }
72
- entry.target.classList.add('animate');
73
- observer.unobserve(entry.target);
74
- }
75
- });
76
- }, observerOptions);
77
-
78
- // Observe elements for animation
79
- observer.observe(document.querySelector('.hero-stats'));
80
-
81
- // Feature cards hover effect
82
- const featureCards = document.querySelectorAll('.feature-card');
83
-
84
- featureCards.forEach(card => {
85
- card.addEventListener('mouseenter', function() {
86
- featureCards.forEach(c => c.classList.remove('active'));
87
- this.classList.add('active');
88
- });
89
- });
90
-
91
- // Smooth scrolling for navigation links
92
- document.querySelectorAll('a[href^="#"]').forEach(anchor => {
93
- anchor.addEventListener('click', function(e) {
94
- e.preventDefault();
95
-
96
- const targetId = this.getAttribute('href');
97
- if (targetId === '#') return;
98
-
99
- const targetElement = document.querySelector(targetId);
100
- if (targetElement) {
101
- targetElement.scrollIntoView({
102
- behavior: 'smooth'
103
- });
104
-
105
- // Close mobile menu if open
106
- if (navLinks.classList.contains('active')) {
107
- navLinks.classList.remove('active');
108
- }
109
-
110
- // Update active navigation link
111
- document.querySelectorAll('.nav-links a').forEach(link => {
112
- link.classList.remove('active');
113
- });
114
- this.classList.add('active');
115
- }
116
- });
117
- });
118
-
119
- // Add active class to navigation based on scroll position
120
- const sections = document.querySelectorAll('section');
121
-
122
- window.addEventListener('scroll', function() {
123
- let current = '';
124
-
125
- sections.forEach(section => {
126
- const sectionTop = section.offsetTop;
127
- const sectionHeight = section.clientHeight;
128
- if (window.scrollY >= (sectionTop - 200)) {
129
- current = section.getAttribute('id');
130
- }
131
- });
132
-
133
- document.querySelectorAll('.nav-links a').forEach(link => {
134
- link.classList.remove('active');
135
- const href = link.getAttribute('href');
136
- if (href === `#${current}`) {
137
- link.classList.add('active');
138
- }
139
- });
140
- });
141
-
142
- // Modal for demo video
143
- const demoButton = document.querySelector('.btn-secondary');
144
-
145
- if (demoButton) {
146
- demoButton.addEventListener('click', function() {
147
- // Create modal elements
148
- const modal = document.createElement('div');
149
- modal.className = 'modal';
150
-
151
- const modalContent = document.createElement('div');
152
- modalContent.className = 'modal-content';
153
-
154
- const closeButton = document.createElement('span');
155
- closeButton.className = 'modal-close';
156
- closeButton.innerHTML = '&times;';
157
-
158
- const videoContainer = document.createElement('div');
159
- videoContainer.className = 'video-container';
160
- videoContainer.innerHTML = '<div class="video-placeholder"><i class="fas fa-play"></i><p>Demo Video</p></div>';
161
-
162
- // Append elements
163
- modalContent.appendChild(closeButton);
164
- modalContent.appendChild(videoContainer);
165
- modal.appendChild(modalContent);
166
- document.body.appendChild(modal);
167
-
168
- // Add styles
169
- modal.style.display = 'flex';
170
- modal.style.position = 'fixed';
171
- modal.style.top = '0';
172
- modal.style.left = '0';
173
- modal.style.width = '100%';
174
- modal.style.height = '100%';
175
- modal.style.backgroundColor = 'rgba(0, 0, 0, 0.8)';
176
- modal.style.zIndex = '1000';
177
- modal.style.justifyContent = 'center';
178
- modal.style.alignItems = 'center';
179
-
180
- modalContent.style.backgroundColor = 'white';
181
- modalContent.style.borderRadius = '8px';
182
- modalContent.style.width = '80%';
183
- modalContent.style.maxWidth = '800px';
184
- modalContent.style.position = 'relative';
185
- modalContent.style.padding = '20px';
186
-
187
- closeButton.style.position = 'absolute';
188
- closeButton.style.top = '10px';
189
- closeButton.style.right = '15px';
190
- closeButton.style.fontSize = '28px';
191
- closeButton.style.fontWeight = 'bold';
192
- closeButton.style.cursor = 'pointer';
193
-
194
- videoContainer.style.width = '100%';
195
- videoContainer.style.padding = '56.25% 0 0 0';
196
- videoContainer.style.position = 'relative';
197
-
198
- const videoPlaceholder = videoContainer.querySelector('.video-placeholder');
199
- videoPlaceholder.style.position = 'absolute';
200
- videoPlaceholder.style.top = '0';
201
- videoPlaceholder.style.left = '0';
202
- videoPlaceholder.style.width = '100%';
203
- videoPlaceholder.style.height = '100%';
204
- videoPlaceholder.style.backgroundColor = '#f3f4f6';
205
- videoPlaceholder.style.display = 'flex';
206
- videoPlaceholder.style.flexDirection = 'column';
207
- videoPlaceholder.style.justifyContent = 'center';
208
- videoPlaceholder.style.alignItems = 'center';
209
- videoPlaceholder.style.color = '#4f46e5';
210
-
211
- const playIcon = videoPlaceholder.querySelector('i');
212
- playIcon.style.fontSize = '48px';
213
- playIcon.style.marginBottom = '10px';
214
-
215
- // Close modal functionality
216
- closeButton.addEventListener('click', function() {
217
- document.body.removeChild(modal);
218
- });
219
-
220
- // Close when clicking outside modal content
221
- modal.addEventListener('click', function(event) {
222
- if (event.target === modal) {
223
- document.body.removeChild(modal);
224
- }
225
- });
226
- });
227
- }
228
-
229
- // Form submission for newsletter
230
- const newsletterForm = document.querySelector('.newsletter');
231
-
232
- if (newsletterForm) {
233
- newsletterForm.addEventListener('submit', function(e) {
234
- e.preventDefault();
235
-
236
- const emailInput = this.querySelector('input[type="email"]');
237
- const email = emailInput.value.trim();
238
-
239
- if (email && isValidEmail(email)) {
240
- // Create toast notification
241
- const toast = document.createElement('div');
242
- toast.className = 'toast';
243
- toast.innerHTML = '<i class="fas fa-check-circle"></i> Thank you for subscribing!';
244
-
245
- // Add styles to toast
246
- toast.style.position = 'fixed';
247
- toast.style.bottom = '20px';
248
- toast.style.right = '20px';
249
- toast.style.backgroundColor = '#10b981';
250
- toast.style.color = 'white';
251
- toast.style.padding = '12px 20px';
252
- toast.style.borderRadius = '4px';
253
- toast.style.boxShadow = '0 4px 6px rgba(0, 0, 0, 0.1)';
254
- toast.style.display = 'flex';
255
- toast.style.alignItems = 'center';
256
- toast.style.gap = '8px';
257
- toast.style.zIndex = '1000';
258
- toast.style.opacity = '0';
259
- toast.style.transform = 'translateY(20px)';
260
- toast.style.transition = 'opacity 0.3s, transform 0.3s';
261
-
262
- document.body.appendChild(toast);
263
-
264
- // Show toast
265
- setTimeout(() => {
266
- toast.style.opacity = '1';
267
- toast.style.transform = 'translateY(0)';
268
- }, 10);
269
-
270
- // Hide toast after 3 seconds
271
- setTimeout(() => {
272
- toast.style.opacity = '0';
273
- toast.style.transform = 'translateY(20px)';
274
-
275
- // Remove toast from DOM after animation
276
- setTimeout(() => {
277
- document.body.removeChild(toast);
278
- }, 300);
279
- }, 3000);
280
-
281
- // Reset form
282
- emailInput.value = '';
283
- } else {
284
- // Invalid email handling
285
- emailInput.style.borderColor = '#ef4444';
286
- emailInput.style.boxShadow = '0 0 0 2px rgba(239, 68, 68, 0.2)';
287
-
288
- // Reset styles after 2 seconds
289
- setTimeout(() => {
290
- emailInput.style.borderColor = '';
291
- emailInput.style.boxShadow = '';
292
- }, 2000);
293
- }
294
- });
295
- }
296
-
297
- // Email validation function
298
- function isValidEmail(email) {
299
- const regex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
300
- return regex.test(email);
301
- }
302
-
303
- // Add button ripple effect
304
- const buttons = document.querySelectorAll('button');
305
-
306
- buttons.forEach(button => {
307
- button.addEventListener('click', function(e) {
308
- const x = e.clientX - e.target.getBoundingClientRect().left;
309
- const y = e.clientY - e.target.getBoundingClientRect().top;
310
-
311
- const ripple = document.createElement('span');
312
- ripple.className = 'ripple';
313
- ripple.style.left = `${x}px`;
314
- ripple.style.top = `${y}px`;
315
-
316
- this.appendChild(ripple);
317
-
318
- setTimeout(() => {
319
- ripple.remove();
320
- }, 600);
321
- });
322
- });
323
- });
324
-
325
- // Add CSS for ripple effect
326
- (function() {
327
- const style = document.createElement('style');
328
- style.textContent = `
329
- button {
330
- position: relative;
331
- overflow: hidden;
332
- }
333
-
334
- .ripple {
335
- position: absolute;
336
- border-radius: 50%;
337
- background-color: rgba(255, 255, 255, 0.7);
338
- transform: scale(0);
339
- animation: ripple 0.6s linear;
340
- pointer-events: none;
341
- }
342
-
343
- @keyframes ripple {
344
- to {
345
- transform: scale(4);
346
- opacity: 0;
347
- }
348
- }
349
-
350
- .modal {
351
- animation: fadeIn 0.3s ease;
352
- }
353
-
354
- .modal-content {
355
- animation: scaleIn 0.3s ease;
356
- }
357
-
358
- @keyframes fadeIn {
359
- from { opacity: 0; }
360
- to { opacity: 1; }
361
- }
362
-
363
- @keyframes scaleIn {
364
- from { transform: scale(0.9); opacity: 0; }
365
- to { transform: scale(1); opacity: 1; }
366
- }
367
- `;
368
- document.head.appendChild(style);
369
- })();