-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
41 lines (37 loc) · 931 Bytes
/
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
let menu = document.querySelector('#menu-btn');
let navbar = document.querySelector('.navbar');
menu.onclick = () => {
menu.classList.toggle('fa-times');
navbar.classList.toggle('active');
};
window.onscroll = () => {
menu.classList.remove('fa-times');
navbar.classList.remove('active');
};
document.querySelectorAll('.image-slider img').forEach(images => {
images.onclick = () => {
var src = images.getAttribute('src');
document.querySelector('.main-home-image').src = src;
};
});
var swiper = new Swiper(".review-slider", {
spaceBetween: 20,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
loop: true,
grabCursor: true,
autoplay: {
delay: 7500,
disableOnInteraction: false,
},
breakpoints: {
0: {
slidesPerView: 1
},
768: {
slidesPerView: 2
}
},
});