-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
66 lines (57 loc) · 2.11 KB
/
Copy pathscript.js
File metadata and controls
66 lines (57 loc) · 2.11 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
document.addEventListener('DOMContentLoaded', function() {
const menuToggle = document.getElementById('menuToggle');
const navLinks = document.querySelector('.nav-links');
if (menuToggle) {
menuToggle.addEventListener('click', () => {
navLinks.classList.toggle('active');
});
}
const links = document.querySelectorAll('.nav-links a');
links.forEach(link => {
link.addEventListener('click', () => {
navLinks.classList.remove('active');
});
});
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
if (this.getAttribute('href') !== '#') {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
const headerHeight = document.querySelector('header').offsetHeight;
window.scrollTo({
top: target.offsetTop - headerHeight,
behavior: 'smooth'
});
}
}
});
});
const observerOptions = {
threshold: 0.2
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, observerOptions);
const elements = document.querySelectorAll('.feature-card, .team-member, .workflow-step');
elements.forEach(element => {
observer.observe(element);
});
const style = document.createElement('style');
style.textContent = `
.feature-card, .team-member, .workflow-step {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.feature-card.visible, .team-member.visible, .workflow-step.visible {
opacity: 1;
transform: translateY(0);
}
`;
document.head.appendChild(style);
});