forked from codervivek5/VigyBag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
205 lines (187 loc) · 5.88 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
// Open and Close of Navbar
const burgerIcon = document.getElementById("icon");
const navMenu = document.querySelector(".nav_menu2");
const header = document.querySelector(".header");
const btnvar1 = document.getElementById("btn1");
const addbtn1 = document.getElementById("addBtn1");
const btnvar2 = document.getElementById("btn2");
const addbtn2 = document.getElementById("addBtn2");
const btnvar3 = document.getElementById("btn3");
const addbtn3 = document.getElementById("addBtn3");
const btnvar4 = document.getElementById("btn4");
const addbtn4 = document.getElementById("addBtn4");
const stars = document.querySelectorAll(".items-star i");
const copyright = document.querySelector("#copyright p span");
// Dark Mode button Function
const checkbox = document.getElementById("checkbox");
checkbox.addEventListener("change", () => {
document.body.classList.toggle("dark");
});
burgerIcon.addEventListener("click", () => {
console.log("Hello");
burgerIcon.classList.toggle("fa-bars");
burgerIcon.classList.toggle("fa-xmark");
navMenu.classList.toggle("show");
});
function Toggle1() {
if (btnvar1.style.color == "red") {
btnvar1.style.color = "gray";
} else {
btnvar1.style.color = "red";
}
}
function tog1() {
if (addbtn1.style.color == "green") {
addbtn1.style.color = "gray";
addbtn1.style.backgroundColor = "#d9d9d9";
addbtn1.style.borderStyle = "none";
} else {
addbtn1.style.color = "green";
addbtn1.style.borderColor = "#e8f6e8";
addbtn1.style.borderColor = "yellowgreen";
addbtn1.style.borderStyle = "solid";
}
}
function Toggle2() {
if (btnvar2.style.color == "red") {
btnvar2.style.color = "gray";
} else {
btnvar2.style.color = "red";
}
}
function tog2() {
if (addbtn2.style.color == "green") {
addbtn2.style.color = "gray";
addbtn2.style.backgroundColor = "#d9d9d9";
addbtn2.style.borderStyle = "none";
} else {
addbtn2.style.color = "green";
addbtn2.style.borderColor = "#e8f6e8";
addbtn2.style.borderColor = "yellowgreen";
addbtn2.style.borderStyle = "solid";
}
}
function Toggle3() {
if (btnvar3.style.color == "red") {
btnvar3.style.color = "gray";
} else {
btnvar3.style.color = "red";
}
}
function tog3() {
if (addbtn3.style.color == "green") {
addbtn3.style.color = "gray";
addbtn3.style.backgroundColor = "#d9d9d9";
addbtn3.style.borderStyle = "none";
} else {
addbtn3.style.color = "green";
addbtn3.style.borderColor = "#e8f6e8";
addbtn3.style.borderColor = "yellowgreen";
addbtn3.style.borderStyle = "solid";
}
}
function Toggle4() {
if (btnvar4.style.color == "red") {
btnvar4.style.color = "gray";
} else {
btnvar4.style.color = "red";
}
}
function tog4() {
if (addbtn4.style.color == "green") {
addbtn4.style.color = "gray";
addbtn4.style.backgroundColor = "#d9d9d9";
addbtn4.style.borderStyle = "none";
} else {
addbtn4.style.color = "green";
addbtn4.style.borderColor = "#e8f6e8";
addbtn4.style.borderColor = "yellowgreen";
addbtn4.style.borderStyle = "solid";
}
}
stars.forEach((star, index1) => {
star.addEventListener("click", () => {
stars.forEach((star, index2) => {
index1 >= index2
? star.classList.add("active")
: star.classList.remove("active");
});
});
});
// Copyright link {clickable}
copyright.addEventListener("click", function () {
window.open("https://codervivek.live/", "_blank");
});
// Path: VigyBag/script.js
// Show Pop-Up
// Get the modal
var ebModal = document.getElementById("mySizeChartModal");
var ebBtn = document.getElementById("mySizeChart");
var ebSpan = document.getElementsByClassName("ebcf_close")[0];
var modalImg = document.getElementById("modalImage");
ebBtn = function () {
ebModal.style.display = "block";
};
ebSpan.onclick = function () {
ebModal.style.display = "none";
};
window.onclick = function (event) {
if (event.target == ebModal) {
ebModal.style.display = "none";
}
};
// Search functionality -\
function searchProduct() {
const searchInput = document.getElementById("search");
const itemCards = document.querySelectorAll(".item-card");
const itemSections = document.querySelectorAll(".item-row");
const seeMoreLinks = document.querySelectorAll(".see-more-text");
const searchQuery = searchInput.value.trim().toLowerCase();
itemCards.forEach((item) => {
const itemTitle = item
.querySelector(".item-heading a")
.innerText.toLowerCase();
if (itemTitle.includes(searchQuery)) {
item.style.display = "block";
item.closest(".item-row").style.display = "block";
} else {
item.style.display = "none";
}
});
// Show the item sections if at least one item is visible in them
itemSections.forEach((section) => {
const visibleItems = section.querySelectorAll(
'.item-card[style="display: block;"]'
);
if (visibleItems.length > 0) {
section.style.display = "block";
} else {
section.style.display = "none";
}
});
// Hide the "See more..." links if the corresponding section has no visible items
seeMoreLinks.forEach((link) => {
const section = link.previousElementSibling;
const visibleItems = section.querySelectorAll('.item-card[style="display: block;"]');
if (visibleItems.length > 0) {
link.style.display = 'block';
} else {
link.style.display = 'none';
}
});
}
// Function to show all items and "See more..." links when clearing the search
function clearSearch() {
const itemCards = document.querySelectorAll(".item-card");
const itemSections = document.querySelectorAll(".item-row");
const seeMoreLinks = document.querySelectorAll(".see-more-text");
itemCards.forEach((item) => {
item.style.display = "block";
});
itemSections.forEach((section) => {
section.style.display = "block";
});
seeMoreLinks.forEach((link) => {
link.style.display = "block";
});
}