-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e348ce3
Showing
40 changed files
with
2,841 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
let menu = document.querySelector('#menu-bars'); | ||
let navbar = document.querySelector('.navbar'); | ||
|
||
menu.onclick = () =>{ | ||
menu.classList.toggle('fa-times'); | ||
navbar.classList.toggle('active'); | ||
} | ||
|
||
let section = document.querySelectorAll('section'); | ||
let navLinks = document.querySelectorAll('header .navbar a'); | ||
|
||
window.onscroll = () =>{ | ||
|
||
menu.classList.remove('fa-times'); | ||
navbar.classList.remove('active'); | ||
|
||
section.forEach(sec =>{ | ||
|
||
let top = window.scrollY; | ||
let height = sec.offsetHeight; | ||
let offset = sec.offsetTop - 150; | ||
let id = sec.getAttribute('id'); | ||
|
||
if(top >= offset && top < offset + height){ | ||
navLinks.forEach(links =>{ | ||
links.classList.remove('active'); | ||
document.querySelector('header .navbar a[href*='+id+']').classList.add('active'); | ||
}); | ||
}; | ||
|
||
}); | ||
|
||
} | ||
|
||
document.querySelector('#search-icon').onclick = () =>{ | ||
document.querySelector('#search-form').classList.toggle('active'); | ||
} | ||
|
||
document.querySelector('#close').onclick = () =>{ | ||
document.querySelector('#search-form').classList.remove('active'); | ||
} | ||
|
||
var swiper = new Swiper(".home-slider", { | ||
spaceBetween: 30, | ||
centeredSlides: true, | ||
autoplay: { | ||
delay: 7500, | ||
disableOnInteraction: false, | ||
}, | ||
pagination: { | ||
el: ".swiper-pagination", | ||
clickable: true, | ||
}, | ||
loop:true, | ||
}); | ||
|
||
var swiper = new Swiper(".review-slider", { | ||
spaceBetween: 20, | ||
centeredSlides: true, | ||
autoplay: { | ||
delay: 7500, | ||
disableOnInteraction: false, | ||
}, | ||
loop:true, | ||
breakpoints: { | ||
0: { | ||
slidesPerView: 1, | ||
}, | ||
640: { | ||
slidesPerView: 2, | ||
}, | ||
768: { | ||
slidesPerView: 2, | ||
}, | ||
1024: { | ||
slidesPerView: 3, | ||
}, | ||
}, | ||
}); | ||
|
||
function loader(){ | ||
document.querySelector('.loader-container').classList.add('fade-out'); | ||
} | ||
|
||
function fadeOut(){ | ||
setInterval(loader, 3000); | ||
} | ||
|
||
window.onload = fadeOut; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.