-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
124 lines (104 loc) · 3.49 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
122
123
124
/*toggle the menus*/
const nav = document.querySelector('#header nav') // Aqui selecionamos o elemento nav que esta dentro de outro elemento de id header, e atribuimos ele a const nav.
const toggle = document.querySelectorAll('nav .toggle') // Aqui selecionamos todos elementos com classe toggle que estão dentro de um nav e atribuimos a const toggle.No caso pegou dois elementos.
for (const element of toggle) {
element.addEventListener('click', function () {
nav.classList.toggle('show')
})
}
/*When click in menu, hidden menu*/
const links = document.querySelectorAll('nav ul li a') // Aqui selecionamos os elementos "a" que estão dentro de um "li" dentro de "ul" dentro de "nav" e atribuiremos a const links. E no caso os "a" são links que direcionam para parter da minha pagina no próprio documento.
for (const link of links) {
link.addEventListener('click', function () {
nav.classList.remove('show')
})
}
/* Shadown header*/
const header = document.querySelector('#header')
const navHeight = header.offsetHeight
function changeHearderWhenScroll() {
if (this.window.scrollY >= navHeight) {
header.classList.add('scroll')
} else {
header.classList.remove('scroll')
}
}
//Testimonial Swiper
const swiper = new Swiper('.swiper-container', {
slidesPerView: 1,
pagination: {
el: '.swiper-pagination'
},
mousewheel: true,
keyboard: true,
breakpoints: {
767: {
slidesPerView: 2,
setWrapperSize: true
}
}
})
//ScrollReveal: mostrar elementos quando der scroll na pagina
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: 50 }
)
//Back to top: voltar ao top
const backToTopButton = document.querySelector('.back-to-top')
function backToTop() {
if (window.scrollY >= 560) {
backToTopButton.classList.add('show')
} else {
backToTopButton.classList.remove('show')
}
}
//Menu ativo conforme a seção visivel na pagina
const sections = document.querySelectorAll('main section[id]')
function activateManuAtCurrentSection() {
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')
}
}
}
window.addEventListener('scroll', function () {
changeHearderWhenScroll()
backToTop()
activateManuAtCurrentSection()
})
// dark mode
const html = document.querySelector('html')
const darkTheme = document.querySelector('#header .dark-theme')
const lightTheme = document.querySelector('#header .light-theme')
const swiperTheme = document.querySelectorAll('#header>div')
for (const element of swiperTheme) {
element.addEventListener('click', function () {
darkTheme.classList.toggle('show')
lightTheme.classList.toggle('show')
html.classList.toggle('dark-mode')
})
}