-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
248 lines (211 loc) · 8.67 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
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
const text = ["</\u00A0\u00A0\u00A0TRIEU DO\u00A0\u00A0\u00A0>", "Software Engineer"];
let index = 0;
let a = 0;
function animation() {
if (a >= text.length) {
return;
}
if (index < text[a].length) {
document.getElementById(`${a}`).innerHTML += text[a].charAt(index);
index++;
setTimeout(animation, 40);
} else {
document.getElementById(`${a}`).parentElement.style.borderRight = "none";
index = 0;
a++;
animation();
}
}
function validateEmail(email) {
const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
return emailRegex.match(email) !== null ;
}
document.getElementById("emailForm").addEventListener("submit", function(event) {
const emailInput = document.getElementById("email");
if (!validateEmail(emailInput.value)) {
emailInput.classList.add("is-invalid");
event.preventDefault();
} else {
emailInput.classList.remove("is-invalid");
}
});
document.addEventListener("scroll", function () {
let navbar = document.querySelector(".vertical-navbar");
navbar.style.top = window.scrollY + 340 + "px";
});
let isNavbarScrolling = false;
document.querySelectorAll('.vertical-navbar a').forEach(navItem => {
navItem.addEventListener('click', function (event) {
const sectionId = this.getAttribute('data-section');
if (!sectionId) return;
event.preventDefault();
isNavbarScrolling = true;
document.querySelectorAll(".vertical-navbar a").forEach(link => link.classList.remove("active"));
this.classList.add("active");
document.documentElement.classList.add("disable-animations");
const targetSection = document.getElementById(sectionId);
if (targetSection) {
window.scrollTo({
top: targetSection.offsetTop,
behavior: 'smooth'
});
}
setTimeout(() => {
isNavbarScrolling = false;
document.documentElement.classList.remove("disable-animations");
}, 1000);
});
});
window.addEventListener("scroll", () => {
if (!isNavbarScrolling) {
document.documentElement.classList.remove("disable-animations");
}
});
document.addEventListener("DOMContentLoaded", function () {
const sections = document.querySelectorAll("section");
const navLinks = document.querySelectorAll(".vertical-navbar a");
function changeActiveNav() {
let scrollPosition = window.scrollY;
sections.forEach((section) => {
const sectionTop = section.offsetTop - 100;
const sectionHeight = section.clientHeight;
const sectionId = section.getAttribute("id");
if (scrollPosition >= sectionTop && scrollPosition < sectionTop + sectionHeight) {
navLinks.forEach((link) => link.classList.remove("active"));
const activeLink = document.querySelector(`.vertical-navbar a[data-section="${sectionId}"]`);
if (activeLink) {
activeLink.classList.add("active");
}
}
});
}
window.addEventListener("scroll", changeActiveNav);
});
document.addEventListener("DOMContentLoaded", function () {
document.querySelectorAll(".redacted").forEach(element => {
element.addEventListener("click", function () {
this.classList.remove("redacted");
this.classList.add("revealed");
});
});
});
document.addEventListener("DOMContentLoaded", function () {
if (typeof encryptedData !== "undefined") {
document.querySelectorAll(".redacted").forEach(element => {
element.addEventListener("click", function () {
let dataKey = this.id;
if (encryptedData[dataKey]) {
let decryptedText = decryptData(encryptedData[dataKey]);
if (isValidURL(decryptedText)) {
let anchor = document.createElement("a");
anchor.href = decryptedText;
anchor.textContent = decryptedText;
anchor.target = "_blank";
this.innerHTML = '';
this.appendChild(anchor);
} else {
this.textContent = decryptedText;
}
this.classList.remove("redacted");
this.classList.add("revealed");
}
});
});
} else {
console.error("secureData.js is not loaded properly.");
}
});
function isValidURL(str) {
try {
new URL(str);
return true;
} catch (_) {
return false;
}
}
document.addEventListener("DOMContentLoaded", function () {
const checkbox = document.getElementById("agreeCheckbox");
const submitButton = document.getElementById("submitButton");
const contactForm = document.getElementById("contactForm");
const nameInput = document.getElementById("name"); // Name field
const emailInput = document.getElementById("emailForm"); // Email field
const messageInput = document.getElementById("message"); // Message field
const responseMessage = document.createElement("p");
responseMessage.classList.add("text-success", "fw-bold", "mt-2");
responseMessage.style.display = "none";
submitButton.parentNode.appendChild(responseMessage);
// Function to validate email format
function validateEmail(email) {
const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
return emailRegex.test(email);
}
// Function to validate if a field is not empty
function validateNotEmpty(input) {
return input.value.trim() !== "";
}
// Function to check form validity (email + name + message + checkbox)
function checkValidForm() {
const isEmailValid = validateEmail(emailInput.value.trim());
const isNameValid = validateNotEmpty(nameInput);
const isMessageValid = validateNotEmpty(messageInput);
const isCheckboxChecked = checkbox.checked;
// Enable submit button only if all fields are valid and checkbox is checked
submitButton.disabled = !(isEmailValid && isNameValid && isMessageValid && isCheckboxChecked);
// Apply real-time border validation
applyValidationStyle(emailInput, isEmailValid);
applyValidationStyle(nameInput, isNameValid);
applyValidationStyle(messageInput, isMessageValid);
}
// Function to apply red/normal border based on validation result
function applyValidationStyle(inputElement, isValid) {
if (!isValid) {
inputElement.classList.add("is-invalid");
inputElement.style.border = "2px solid red";
} else {
inputElement.classList.remove("is-invalid");
inputElement.style.border = "";
}
}
// Add event listeners for real-time validation
checkbox.addEventListener("change", checkValidForm);
emailInput.addEventListener("input", checkValidForm);
nameInput.addEventListener("input", checkValidForm);
messageInput.addEventListener("input", checkValidForm);
// Form submission handler
contactForm.addEventListener("submit", function (event) {
event.preventDefault();
// Final validation check before submission
if (!validateEmail(emailInput.value.trim()) || !validateNotEmpty(nameInput) || !validateNotEmpty(messageInput)) {
alert("Please fill in all fields correctly before submitting.");
return;
}
const formData = new FormData(contactForm);
fetch(contactForm.action, {
method: "POST",
body: formData,
headers: {
"Accept": "application/json"
}
}).then(response => {
if (response.ok) {
submitButton.style.display = "none";
responseMessage.textContent = "Message sent successfully!";
responseMessage.style.display = "block";
responseMessage.style.color = "green";
contactForm.reset();
checkbox.checked = false;
submitButton.disabled = true;
} else {
responseMessage.textContent = "Error sending message. Try again.";
responseMessage.style.color = "red";
responseMessage.style.display = "block";
}
}).catch(error => {
console.error("Error:", error);
responseMessage.textContent = "There was a problem submitting the form.";
responseMessage.style.color = "red";
responseMessage.style.display = "block";
});
});
});
window.onload = animation;