forked from swaraj-das/Collect-your-GamingTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
181 lines (157 loc) · 5.34 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
var menuList = document.getElementById("menuList");
menuList.style.height = "0px";
menuList.style.paddingTop = "0px";
menuList.style.display = "block";
menuList.style.position = "fixed";
menuList.style.borderRadius = "20px";
function toggleMenu() {
if (menuList.style.height == "0px") {
menuList.style.height = "auto";
menuList.style.paddingTop = "20px";
} else {
menuList.style.height = "0px";
menuList.style.paddingTop = "0px";
}
}
window.onscroll = function() {
updateProgressBar();
};
function updateProgressBar() {
var scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
var scrollHeight =
document.documentElement.scrollHeight -
document.documentElement.clientHeight;
var scrollPercent = (scrollTop / scrollHeight) * 100;
document.getElementById("progressBar").style.width = scrollPercent + "%";
}
document.addEventListener("DOMContentLoaded", () => {
console.log("Website loaded successfully!");
});
// Show or hide the scroll-top button based on scroll position
window.addEventListener('scroll', function() {
const scrollTopButton = document.querySelector('.scroll-top');
if (window.pageYOffset > 300) {
scrollTopButton.style.display = 'block';
} else {
scrollTopButton.style.display = 'none';
}
});
document.addEventListener('DOMContentLoaded', function() {
const scrollToTopBtn = document.getElementById('scrollToTopBtn');
const progressRing = scrollToTopBtn.querySelector('circle');
const rootElement = document.documentElement;
const radius = progressRing.r.baseVal.value;
const circumference = radius * 2 * Math.PI;
progressRing.style.strokeDasharray = `${circumference} ${circumference}`;
progressRing.style.strokeDashoffset = circumference;
function setProgress(percent) {
const offset = circumference - percent / 100 * circumference;
progressRing.style.strokeDashoffset = offset;
}
function handleScroll() {
const scrollTotal = rootElement.scrollHeight - rootElement.clientHeight;
const scrolled = (rootElement.scrollTop / scrollTotal) * 100;
// Show or hide the scroll-to-top button based on scroll position
if (window.pageYOffset > 300) {
scrollToTopBtn.classList.add('show');
} else {
scrollToTopBtn.classList.remove('show');
}
// Update progress circle
requestAnimationFrame(() => {
setProgress(scrolled);
});
}
function scrollToTop() {
rootElement.scrollTo({
top: 0,
behavior: 'smooth'
});
}
scrollToTopBtn.addEventListener('click', scrollToTop);
window.addEventListener('scroll', handleScroll);
// Initial check in case the page is already scrolled on load
handleScroll();
});
function toggleTheme() {
const body = document.body;
const themeToggle = document.getElementById("theme-toggle");
body.classList.toggle("dark-mode", themeToggle.checked);
// Save the user's preference in localStorage
if (themeToggle.checked) {
localStorage.setItem("theme", "dark");
} else {
localStorage.setItem("theme", "light");
}
}
// Load theme from localStorage on page load
window.onload = () => {
const savedTheme = localStorage.getItem("theme");
const themeToggle = document.getElementById("theme-toggle");
if (savedTheme === "dark") {
document.body.classList.add("dark-mode");
themeToggle.checked = true;
}
};
//function to remove sidebar upon clicking close button
function toggleSidebar() {
var sidebar = document.getElementById("SideBar");
var sidebarContent = document.getElementById("sidebar-content");
if (sidebar) {
// Remove the sidebar element and its content
sidebar.remove();
sidebarContent.remove();
} else {
console.error("Sidebar element not found");
}
}
function performSearch() {
let searchTerm = document.getElementById("search-input").value.toLowerCase();
console.log(searchTerm);
let cards = document.querySelectorAll(".row");
cards.forEach(function (card) {
let cardHeading = card
.querySelector(".card-heading")
.innerText.toLowerCase();
// Check if the search term is in the card heading or description
if (cardHeading.includes(searchTerm)) {
card.style.display = "block"; // Show the card
} else {
card.style.display = "none"; // Hide the card
}
});
}
async function SendEmail(e) {
e.preventDefault();
const Name = document.getElementById("name").value;
const Email = document.getElementById("email").value;
const Message = document.getElementById("message").value;
try {
const response = await fetch("http://localhost:5000/email/SendEmail", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({ Name, Email, Message }),
});
if (response.ok) {
alert("Email sent successfully!");
} else {
alert("Error sending email");
}
} catch (error) {
console.error("Error:", error);
alert("An error occurred while sending the email.");
}
}
// faq
document.querySelectorAll('.faq input[type="checkbox"]').forEach((checkbox) => {
checkbox.addEventListener('change', function () {
const answer = this.nextElementSibling.nextElementSibling; // FAQ answer div
if (this.checked) {
answer.style.maxHeight = answer.scrollHeight + 'px';
} else {
answer.style.maxHeight = '0px';
}
});
});