forked from Harshs0891/Web-DevelopMent-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
58 lines (48 loc) · 1.44 KB
/
script.js
File metadata and controls
58 lines (48 loc) · 1.44 KB
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
50
51
52
53
54
55
56
57
58
let menu = document.querySelector('#menu-btn');
let navbar = document.querySelector('.header .navbar');
menu.onclick = () => {
menu.classList.toggle('fa-times');
navbar.classList.toggle('active');
};
window.onscroll = () => {
menu.classList.remove('fa-times');
navbar.classList.remove('active');
};
// -------swiper effect ----------
var swiper = new Swiper(".home-slider", {
loop:true, //for infinte right/left scrolling for swiper
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
var swiper = new Swiper(".reviews-slider", {
loop:true, //for infinte right/left scrolling for swiper
spaceBetween: 20,
autoHeight : true,
grabCursor: true,
breakpoints: {
640: {
slidesPerView: 1,
},
768: {
slidesPerView: 2,
},
1024: {
slidesPerView: 3,
},
},
});
// ================Load More : packages buttons functionality ==================
let loadMoreBtn = document.querySelector('.packages .load-more .btn');
let currentItem = 3;
loadMoreBtn.onclick = () => {
let boxes = [...document.querySelectorAll('.packages .box-container .box')];
for(var i=currentItem; i < currentItem + 3; i++){
boxes[i].style.display = 'inline-block';
};
currentItem +=3;
if (currentItem >= boxes.length) {
loadMoreBtn.style.display = 'none';
}
}