-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
104 lines (84 loc) · 2.85 KB
/
script.js
File metadata and controls
104 lines (84 loc) · 2.85 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
// Show/hide tabs
function showTab(tabId) {
// Hide hero section
document.querySelector('.hero').style.display = 'none';
// Hide all tab sections
document.querySelectorAll('.tab-section').forEach(section => {
section.classList.remove('active');
});
// Show selected tab
document.getElementById(tabId).classList.add('active');
// Update active nav link
document.querySelectorAll('.nav-link').forEach(link => {
link.classList.remove('active');
});
event.target.classList.add('active');
// Scroll to top
window.scrollTo(0, 0);
}
function showHome() {
// Show hero section
document.querySelector('.hero').style.display = 'flex';
// Hide all tab sections
document.querySelectorAll('.tab-section').forEach(section => {
section.classList.remove('active');
});
// Remove active from all nav links
document.querySelectorAll('.nav-link').forEach(link => {
link.classList.remove('active');
});
// Scroll to top
window.scrollTo(0, 0);
}
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
});
});
// Navbar background change on scroll
const navbar = document.querySelector('.navbar');
let lastScroll = 0;
window.addEventListener('scroll', () => {
const currentScroll = window.pageYOffset;
if (currentScroll > 100) {
navbar.style.boxShadow = '0 4px 12px rgba(0, 0, 0, 0.1)';
} else {
navbar.style.boxShadow = '0 4px 6px rgba(0, 0, 0, 0.1)';
}
lastScroll = currentScroll;
});
// Intersection Observer for fade-in animations
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, observerOptions);
// Observe all project cards and skill categories
document.addEventListener('DOMContentLoaded', () => {
const animatedElements = document.querySelectorAll('.project-card, .skill-category');
animatedElements.forEach(el => {
el.style.opacity = '0';
el.style.transform = 'translateY(20px)';
el.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
observer.observe(el);
});
});
// Toggle project description box
function toggleProject(projectId) {
const content = document.getElementById(projectId);
const btn = content.querySelector('.collapse-btn');
content.classList.toggle('collapsed');
if (content.classList.contains('collapsed')) {
btn.textContent = '+';
} else {
btn.textContent = '−';
}
}