-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathindex.js
62 lines (50 loc) · 1.47 KB
/
index.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
50
51
52
53
54
55
56
57
58
59
60
61
62
const menuBtn=document.getElementById("menu-btn");
const navLinks=document.getElementById("nav-links");
const menuBtnIcon=menuBtn.querySelector("i");
menuBtn.addEventListener("click",(e)=>{
navLinks.classList.toggle("open")
const isOpen=navLinks.classList.contains("open")
menuBtnIcon.setAttribute("class",isOpen ? "ri-close-line":"ri-menu-line")
});
navLinks.addEventListener("click",(e)=>{
navLinks.classList.remove("open")
menuBtnIcon.setAttribute("class","ri-menu-line");
});
const bookingType=document.getElementById("booking-type")
bookingType.addEventListener("click",(e)=>{
Array.from(bookingType.getElementsByTagName("div")).forEach((item)=>{
item.classList.remove("active");
});
e.target.classList.add("active");
});
const swiper = new Swiper(".swiper", {
slidesPerView: "auto",
spaceBetween: 20,
});
const scrollRevealOption = {
distance: "50px",
origin: "bottom",
duration: 1000,
};
// header container
ScrollReveal().reveal(".header_container h1", {
...scrollRevealOption,
});
ScrollReveal().reveal(".header_container p", {
...scrollRevealOption,
delay: 500,
});
ScrollReveal().reveal(".header_container .booking", {
...scrollRevealOption,
delay: 1000,
});
// service container
ScrollReveal().reveal(".service_card", {
duration: 1000,
interval: 500,
});
// offer container
ScrollReveal().reveal(".offer_card", {
...scrollRevealOption,
interval: 500,
});