-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
44 lines (39 loc) · 912 Bytes
/
script.js
File metadata and controls
44 lines (39 loc) · 912 Bytes
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
let navbar = document.querySelector('.header .navbar');
let menuBtn = document.querySelector('#menu-btn');
menuBtn.onclick = () =>{
menuBtn.classList.toggle('fa-times');
navbar.classList.toggle('active');
}
window.onscroll = () => {
menuBtn.classList.remove('fa-times');
navbar.classList.remove('active');
}
var swiper = new Swiper(".home-slider",{
grabCursor:true,
loop:true,
centeredSides:true,
navigation: {
nextEl:".swiper-button-next",
prevEl:".swiper-button-prev"
},
});
var swiper = new Swiper(".reviews-slider",{
pagination:{
el:".swiper-pagination",
clickable:true,
},
grabCursor:true,
loop:true,
spaceBetween:20,
breakpoints: {
0: {
slidesPerView: 1,
},
768: {
slidesPerView: 2,
},
991: {
slidesPerView: 3,
},
},
});