-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript.js
More file actions
388 lines (331 loc) · 12 KB
/
script.js
File metadata and controls
388 lines (331 loc) · 12 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
/* ===================================
Guardian AI - JavaScript
Smooth Animations & Interactions
=================================== */
document.addEventListener('DOMContentLoaded', function() {
// Initialize all components
initNavbar();
initMobileMenu();
initScrollAnimations();
initContactForm();
initSmoothScroll();
});
/* ===================================
Navbar Scroll Effect
=================================== */
function initNavbar() {
const navbar = document.querySelector('.navbar');
window.addEventListener('scroll', function() {
if (window.scrollY > 50) {
navbar.classList.add('scrolled');
} else {
navbar.classList.remove('scrolled');
}
});
}
/* ===================================
Mobile Menu Toggle
=================================== */
function initMobileMenu() {
const mobileMenuBtn = document.querySelector('.mobile-menu-btn');
const navLinks = document.querySelector('.nav-links');
if (mobileMenuBtn && navLinks) {
mobileMenuBtn.addEventListener('click', function() {
this.classList.toggle('active');
navLinks.classList.toggle('active');
});
// Close menu when clicking a link
const links = navLinks.querySelectorAll('a');
links.forEach(link => {
link.addEventListener('click', function() {
mobileMenuBtn.classList.remove('active');
navLinks.classList.remove('active');
});
});
// Close menu when clicking outside
document.addEventListener('click', function(e) {
if (!mobileMenuBtn.contains(e.target) && !navLinks.contains(e.target)) {
mobileMenuBtn.classList.remove('active');
navLinks.classList.remove('active');
}
});
}
}
/* ===================================
Scroll Animations (AOS-like)
=================================== */
function initScrollAnimations() {
const animatedElements = document.querySelectorAll('[data-aos]');
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver(function(entries) {
entries.forEach(entry => {
if (entry.isIntersecting) {
// Add delay if specified
const delay = entry.target.dataset.aosDelay || 0;
setTimeout(() => {
entry.target.classList.add('aos-animate');
}, delay);
// Optional: unobserve after animation
// observer.unobserve(entry.target);
}
});
}, observerOptions);
animatedElements.forEach(el => {
observer.observe(el);
});
// Animate elements already in viewport on load
setTimeout(() => {
animatedElements.forEach(el => {
const rect = el.getBoundingClientRect();
if (rect.top < window.innerHeight && rect.bottom > 0) {
const delay = el.dataset.aosDelay || 0;
setTimeout(() => {
el.classList.add('aos-animate');
}, delay);
}
});
}, 100);
}
/* ===================================
Contact Form Handler
=================================== */
function initContactForm() {
const form = document.getElementById('contactForm');
if (form) {
form.addEventListener('submit', function(e) {
e.preventDefault();
// Get form data
const formData = new FormData(form);
const data = Object.fromEntries(formData);
// Validate
if (!validateForm(data)) {
return;
}
// Show success message
showNotification('Message sent successfully! We\'ll get back to you soon.', 'success');
// Reset form
form.reset();
});
}
}
function validateForm(data) {
// Email validation
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
if (!data.name || data.name.trim().length < 2) {
showNotification('Please enter a valid name.', 'error');
return false;
}
if (!emailRegex.test(data.email)) {
showNotification('Please enter a valid email address.', 'error');
return false;
}
if (!data.subject) {
showNotification('Please select a subject.', 'error');
return false;
}
if (!data.message || data.message.trim().length < 10) {
showNotification('Please enter a message (at least 10 characters).', 'error');
return false;
}
return true;
}
function showNotification(message, type = 'info') {
// Remove existing notifications
const existing = document.querySelector('.notification');
if (existing) {
existing.remove();
}
// Create notification
const notification = document.createElement('div');
notification.className = `notification notification-${type}`;
notification.innerHTML = `
<span>${message}</span>
<button class="notification-close">×</button>
`;
// Add styles
notification.style.cssText = `
position: fixed;
top: 100px;
right: 24px;
padding: 16px 24px;
background: ${type === 'success' ? '#10B981' : type === 'error' ? '#EF4444' : '#3B82F6'};
color: white;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
display: flex;
align-items: center;
gap: 12px;
z-index: 9999;
animation: slideIn 0.3s ease;
font-weight: 500;
max-width: 400px;
`;
// Add animation keyframes if not exists
if (!document.querySelector('#notification-styles')) {
const style = document.createElement('style');
style.id = 'notification-styles';
style.textContent = `
@keyframes slideIn {
from { transform: translateX(100%); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOut {
from { transform: translateX(0); opacity: 1; }
to { transform: translateX(100%); opacity: 0; }
}
.notification-close {
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
padding: 0;
line-height: 1;
opacity: 0.8;
}
.notification-close:hover {
opacity: 1;
}
`;
document.head.appendChild(style);
}
document.body.appendChild(notification);
// Close button
const closeBtn = notification.querySelector('.notification-close');
closeBtn.addEventListener('click', () => {
notification.style.animation = 'slideOut 0.3s ease forwards';
setTimeout(() => notification.remove(), 300);
});
// Auto remove after 5 seconds
setTimeout(() => {
if (document.body.contains(notification)) {
notification.style.animation = 'slideOut 0.3s ease forwards';
setTimeout(() => notification.remove(), 300);
}
}, 5000);
}
/* ===================================
Smooth Scroll for Anchor Links
=================================== */
function initSmoothScroll() {
const links = document.querySelectorAll('a[href^="#"]');
links.forEach(link => {
link.addEventListener('click', function(e) {
const href = this.getAttribute('href');
if (href === '#') return;
const target = document.querySelector(href);
if (target) {
e.preventDefault();
const navbarHeight = document.querySelector('.navbar').offsetHeight;
const targetPosition = target.getBoundingClientRect().top + window.scrollY - navbarHeight - 20;
window.scrollTo({
top: targetPosition,
behavior: 'smooth'
});
}
});
});
}
/* ===================================
Download Button Click Tracking
=================================== */
document.addEventListener('click', function(e) {
if (e.target.closest('.download-btn')) {
// Track download click
console.log('Download APK button clicked');
// You can add analytics tracking here
// Example: gtag('event', 'download', { 'event_category': 'APK' });
showNotification('Download starting... Please wait.', 'info');
}
});
/* ===================================
Floating Badges Animation Enhancement
=================================== */
function initFloatingBadges() {
const badges = document.querySelectorAll('.floating-badge');
badges.forEach((badge, index) => {
// Add random delay variation
badge.style.animationDelay = `${index * 0.5}s`;
});
}
// Call floating badges init
document.addEventListener('DOMContentLoaded', initFloatingBadges);
/* ===================================
Feature Cards Hover Effect
=================================== */
document.addEventListener('mousemove', function(e) {
const cards = document.querySelectorAll('.feature-card, .team-card');
cards.forEach(card => {
const rect = card.getBoundingClientRect();
const x = e.clientX - rect.left;
const y = e.clientY - rect.top;
if (x >= 0 && x <= rect.width && y >= 0 && y <= rect.height) {
const centerX = rect.width / 2;
const centerY = rect.height / 2;
const rotateX = (y - centerY) / 20;
const rotateY = (centerX - x) / 20;
card.style.transform = `perspective(1000px) rotateX(${rotateX}deg) rotateY(${rotateY}deg) translateY(-4px)`;
}
});
});
document.addEventListener('mouseleave', function(e) {
const cards = document.querySelectorAll('.feature-card, .team-card');
cards.forEach(card => {
card.style.transform = '';
});
}, true);
/* ===================================
Page Load Animation
=================================== */
window.addEventListener('load', function() {
document.body.classList.add('loaded');
// Trigger hero animations
const heroElements = document.querySelectorAll('.hero-title, .hero-description, .hero-buttons, .hero-mockup');
heroElements.forEach((el, index) => {
setTimeout(() => {
el.style.opacity = '1';
el.style.transform = 'translateY(0)';
}, index * 150);
});
});
/* ===================================
Stats Counter Animation
=================================== */
function animateCounter(element, target, duration = 2000) {
const start = 0;
const increment = target / (duration / 16);
let current = start;
const timer = setInterval(() => {
current += increment;
if (current >= target) {
element.textContent = target;
clearInterval(timer);
} else {
element.textContent = Math.floor(current);
}
}, 16);
}
// Initialize counter animation when stats are visible
const statsObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const statValues = entry.target.querySelectorAll('.stat-value');
statValues.forEach(stat => {
const value = stat.textContent;
if (!isNaN(parseInt(value))) {
animateCounter(stat, parseInt(value));
}
});
statsObserver.unobserve(entry.target);
}
});
}, { threshold: 0.5 });
document.addEventListener('DOMContentLoaded', function() {
const statsSection = document.querySelector('.achievement-stats');
if (statsSection) {
statsObserver.observe(statsSection);
}
});