-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
121 lines (92 loc) · 3.14 KB
/
main.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// Open and close menu when click in icon
const nav = document.querySelector("#header nav");
const toggle = document.querySelectorAll("nav .toggle");
for (const element of toggle){
element.addEventListener("click", () => {
nav.classList.toggle("show");
})
}
// When click in menu item, hide the menu
const links = document.querySelectorAll('nav ul li a');
for (const link of links){
link.addEventListener("click", () => {
nav.classList.remove("show");
})
}
// Change page header when scrolling
const header = document.querySelector("#header");
const navHeight = header.offsetHeight;
function changeHeaderWhenScrolling() {
if (window.scrollY >= navHeight) {
// scroll is greater than header height
header.classList.add("scroll");
} else {
// scroll is less than header height
header.classList.remove("scroll");
}
}
// Testimonials carousel slider swiper
// https://swiperjs.com/get-started
const swiper = new Swiper(".swiper", {
slidesPerView: 1,
pagination: {
el: '.swiper-pagination',
type: 'bullets'
},
mousewheel: true, // rodar com o teclado
keyboard: true, // usar as teclas para passar
breakpoints: {
767: {
slidesPerView: 2,
setWrapperSize: true
}
}
})
// scrollreveal: show elements when scrolling in page
const scrollReveal = ScrollReveal({
origin: 'top',
distance: '30px',
duration: 700,
reset: true
});
scrollReveal.reveal(
`#home .image, #home .text,
#about .image, #about .text,
#services header, #services .card,
#testimonials header, #testimonials .testimonials,
#contact .text, #contact .links,
footer .brand, footer .social
`, {interval: 100}
);
// Button back-to-top
function backToTop(){
const backToTopButton = document.querySelector(".back-to-top");
if (window.scrollY >= 580){
backToTopButton.classList.add("show");
} else {
backToTopButton.classList.remove("show");
}
}
// Active menu according to the visible section on the page
const sections = document.querySelectorAll('main section[id]'); //todas as seções que contem id
function activateAtCurrentSections(){
const checkpoint = window.pageYOffset + ((window.innerHeight / 8) * 4);
for (const section of sections) {
const sectionTop = section.offsetTop;
const sectionHeight = section.offsetHeight;
const sectionId = section.getAttribute('id');
const checkpointStart = checkpoint >= sectionTop;
const checkpointEnd = checkpoint <= sectionTop + sectionHeight;
if(checkpointStart && checkpointEnd){
document.querySelector('nav ul li a[href*=' + sectionId + "]").classList.add('active');
} else {
document.querySelector('nav ul li a[href*=' + sectionId + "]").classList.remove('active');
}
}
}
// When Scroll
window.addEventListener("scroll", () => {
changeHeaderWhenScrolling();
backToTop();
activateAtCurrentSections();
})