-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathscript.js
More file actions
62 lines (50 loc) · 1.53 KB
/
script.js
File metadata and controls
62 lines (50 loc) · 1.53 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
59
60
61
62
let menu = document.querySelector('#menu-btn');
let navbar = document.querySelector('.header .navbar');
menu.onclick = function () {
// toggle == removes if exits otherwise add
menu.classList.toggle('fa-times');
navbar.classList.toggle('active');
};
window.onscroll = function () {
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",
},
});
// slider for review section ========
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 = 6;
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';
}
}