-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
44 lines (34 loc) · 1.13 KB
/
app.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
// navbar toggle
const navLinks = document.querySelector("nav .nav-links");
const toggleBtn = document.querySelector(".hamburger-menu");
toggleBtn.addEventListener("click", function () {
navLinks.style.right = "0";
let link = document.querySelectorAll(".nav-links a");
link.forEach((link) => {
link.addEventListener("click", closeMenu);
});
});
// Close the menu on mobile
function closeMenu() {
navLinks.style.right = "-100%";
}
// Select the container where the stars will be appended
let reviewContainer = document.querySelectorAll(".reviewStars");
// Create a new array of length 5 and fill it with undefined values
Array(5)
.fill()
.forEach(() => {
// Create a new img element
let star = document.createElement("img");
// Set the src attribute to the star image path
star.src = "img/Star.svg";
// Append the star image to the review container
reviewContainer.forEach((container) => {
container.appendChild(star.cloneNode(true));
});
});
// prevent form default action
const form = document.querySelector("form");
form.addEventListener("submit", function (e) {
e.preventDefault();
});