-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathscript.js
73 lines (63 loc) · 1.92 KB
/
script.js
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
// Add smooth scrolling 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) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Header transparency on scroll
const header = document.querySelector('header');
let lastScroll = 0;
window.addEventListener('scroll', () => {
const currentScroll = window.pageYOffset;
if (currentScroll <= 0) {
header.classList.remove('scrolled');
} else {
header.classList.add('scrolled');
}
lastScroll = currentScroll;
});
// Intersection Observer for fade-in animations
const observerOptions = {
root: null,
rootMargin: '0px',
threshold: 0.1
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
observer.unobserve(entry.target);
}
});
}, observerOptions);
// Observe all feature cards, roadmap items, and prerequisite items
const animatedElements = document.querySelectorAll('.feature-card, .roadmap-item, .prerequisite-item');
animatedElements.forEach(element => {
element.classList.add('fade-in');
observer.observe(element);
});
// Add CSS classes for animations
const style = document.createElement('style');
style.textContent = `
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
header.scrolled {
background-color: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
}
`;
document.head.appendChild(style);