-
Notifications
You must be signed in to change notification settings - Fork 2
/
A.js
49 lines (44 loc) · 1.04 KB
/
A.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
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: 0,
stretch: 0,
depth: 100,
modifier: 2,
slideShadows: true,
},
loop:true,
autoplay:{
delay:3000,
disableOnInteraction:false,
}
});
var swiper = new Swiper(".review-slider", {
grabCursor: true,
centeredSlides: true,
// coverflowEffect: {
// rotate: 0,
// stretch: 0,
// depth: 100,
// modifier: 2,
// slideShadows: true,
// },
loop:true,
autoplay:{
delay:3000,
disableOnInteraction:false,
}
});