-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
154 lines (140 loc) · 5.24 KB
/
script.js
File metadata and controls
154 lines (140 loc) · 5.24 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
// --- Mobile Menu Toggle ---
function toggleMenu() {
const navLinks = document.querySelector('.nav-links');
const hamburger = document.querySelector('.hamburger');
navLinks.classList.toggle('active');
hamburger.classList.toggle('is-active');
}
// --- Tab Functionality for Education Section ---
function openTab(evt, tabName) {
const tabcontent = document.getElementsByClassName("tab-content");
for (let i = 0; i < tabcontent.length; i++) {
tabcontent[i].classList.remove('active');
}
const tablinks = document.getElementsByClassName("tab-link");
for (let i = 0; i < tablinks.length; i++) {
tablinks[i].classList.remove('active');
}
document.getElementById(tabName).classList.add('active');
evt.currentTarget.classList.add('active');
}
// --- Tab Functionality for Showcase Section ---
function openShowcaseTab(evt, tabName) {
const showcaseContent = document.getElementsByClassName("showcase-content");
for (let i = 0; i < showcaseContent.length; i++) {
showcaseContent[i].classList.remove('active');
}
const showcaseTabs = document.getElementsByClassName("showcase-tab");
for (let i = 0; i < showcaseTabs.length; i++) {
showcaseTabs[i].classList.remove('active');
}
document.getElementById(tabName).classList.add('active');
evt.currentTarget.classList.add('active');
}
// --- Go to Top Button ---
const goToTopBtn = document.getElementById('goToTopBtn');
window.addEventListener("scroll", () => {
if (window.pageYOffset > 100) {
goToTopBtn.classList.add('show');
} else {
goToTopBtn.classList.remove('show');
}
});
// ADDED THIS EVENT LISTENER
goToTopBtn.addEventListener('click', (event) => {
event.preventDefault(); // Prevents the default anchor link behavior
window.scrollTo({
top: 0, // Scroll to the absolute top of the page
behavior: 'smooth' // Use a smooth scrolling animation
});
});
// --- Scroll Animations ---
const observer = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, {
threshold: 0.1
});
const revealElements = document.querySelectorAll('.reveal');
revealElements.forEach((el) => observer.observe(el));
// --- Initial Setup on DOM Load ---
document.addEventListener('DOMContentLoaded', () => {
// Set the default active tabs
if (document.querySelector('.tab-link')) {
document.querySelector('.tab-link').classList.add('active');
document.getElementById('bachelors').classList.add('active');
}
if (document.querySelector('.showcase-tab')) {
document.querySelector('.showcase-tab').classList.add('active');
document.getElementById('showcaseProjects').classList.add('active');
}
// Initialize Particles.js
if (typeof particlesJS !== 'undefined') {
particlesJS("particles-js", {
"particles": {
"number": {
"value": 80,
"density": { "enable": true, "value_area": 800 }
},
"color": { "value": "#7c3aed" },
"shape": { "type": "circle" },
"opacity": { "value": 0.5, "random": false },
"size": { "value": 3, "random": true },
"line_linked": {
"enable": true, "distance": 150,
"color": "#334155", "opacity": 0.4, "width": 1
},
"move": {
"enable": true, "speed": 2, "direction": "none",
"random": false, "straight": false, "out_mode": "out", "bounce": false
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": { "enable": true, "mode": "grab" },
"onclick": { "enable": true, "mode": "push" },
"resize": true
},
"modes": {
"grab": { "distance": 140, "line_linked": { "opacity": 1 } },
"push": { "particles_nb": 4 }
}
},
"retina_detect": true
});
}
});
// --- Form Submission Handling ---
const form = document.getElementById("contact-form");
const result = document.getElementById("result");
if (form) {
form.addEventListener("submit", function (e) {
e.preventDefault(); // 🔥 stops redirect
result.innerHTML = "⏳ Sending...";
result.style.color = "#94A3B8";
const formData = new FormData(form);
fetch("https://api.web3forms.com/submit", {
method: "POST",
body: formData
})
.then(res => res.json())
.then(data => {
if (data.success) {
result.innerHTML = "✅ Message sent successfully! I'll get back to you soon.";
result.style.color = "#22c55e";
form.reset();
} else {
result.innerHTML = "❌ Failed to send message!";
result.style.color = "red";
}
})
.catch(() => {
result.innerHTML = "❌ Something went wrong!";
result.style.color = "red";
});
});
}