-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
40 lines (37 loc) · 876 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
let menu= document.querySelector('#menu-bars');
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');
}
var swiper = new Swiper(".home-slider", {
effect: "coverflow",
grabCursor: true,
centeredSlides: true,
slidesPerView: "auto",
coverflowEffect: {
rotate: 50,
stretch: 0,
depth: 100, modifier: 2,
slideShadows: true,
},
loop:true,
autoplay:{
delay:3000,
disableOnInteraction:false,
}
});
var swiper = new Swiper(".review-slider", {
slidesPerView:1,
grabCursor: true,
centeredSlides: true,
loop:true,
autoplay:{
delay:3000,
disableOnInteraction:false,
}
});