-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
50 lines (46 loc) · 1.55 KB
/
Copy pathscript.js
File metadata and controls
50 lines (46 loc) · 1.55 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
// Mobile menu toggle - make it globally accessible
window.toggleMenu = function() {
const navLinks = document.getElementById('navLinks');
if (navLinks) {
navLinks.classList.toggle('active');
}
}
// Wait for DOM to be ready
document.addEventListener('DOMContentLoaded', function() {
// Close mobile menu when clicking a link
const navLinks = document.querySelectorAll('.nav-links a');
navLinks.forEach(link => {
link.addEventListener('click', () => {
const navLinksElement = document.getElementById('navLinks');
if (navLinksElement) {
navLinksElement.classList.remove('active');
}
});
});
// Smooth scroll for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
const offset = 80;
const targetPosition = target.offsetTop - offset;
window.scrollTo({
top: targetPosition,
behavior: 'smooth'
});
}
});
});
});
// Add scrolled class to navbar
window.addEventListener('scroll', () => {
const navbar = document.getElementById('navbar');
if (navbar) {
if (window.scrollY > 50) {
navbar.classList.add('scrolled');
} else {
navbar.classList.remove('scrolled');
}
}
});