-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
154 lines (124 loc) Β· 5.05 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*=============== SHOW MENU ===============*/
const navMenu = document.getElementById('nav-menu'),
navToggle = document.getElementById('nav-toggle'),
navClose = document.getElementById('nav-close')
/*===== MENU SHOW =====*/
/* Validate if constant exists */
if(navToggle){
navToggle.addEventListener('click', () =>{
navMenu.classList.add('show-menu')
})
}
/*===== MENU HIDDEN =====*/
/* Validate if constant exists */
if(navClose){
navClose.addEventListener('click', () =>{
navMenu.classList.remove('show-menu')
})
}
/*=============== REMOVE MENU MOBILE ===============*/
const navLink = document.querySelectorAll('.nav__link')
const linkAction = () =>{
const navMenu = document.getElementById('nav-menu')
// When we click on each nav__link, we remove the show-menu class
navMenu.classList.remove('show-menu')
}
navLink.forEach(n => n.addEventListener('click', linkAction))
/*=============== CHANGE BACKGROUND HEADER ===============*/
const scrollHeader = () =>{
const header = document.getElementById('header')
// When the scroll is greater than 50 viewport height, add the scroll-header class to the header tag
this.scrollY >= 50 ? header.classList.add('bg-header')
: header.classList.remove('bg-header')
}
window.addEventListener('scroll', scrollHeader)
/*=============== SCROLL SECTIONS ACTIVE LINK ===============*/
const sections = document.querySelectorAll('section[id ]')
const scrollActive = () =>{
const scrollY = window.pageYOffset
sections.forEach(current =>{
const sectionHeight = current.offsetHeight,
sectionTop = current.offsetTop - 58,
sectionId = current.getAttribute('id'),
sectionsClass = document.querySelector('.nav__menu a[href*=' + sectionId + ']')
if(scrollY > sectionTop && scrollY <= sectionTop + sectionHeight){
sectionsClass.classList.add('active-link')
}else{
sectionsClass.classList.remove('active-link')
}
})
}
window.addEventListener('scroll', scrollActive)
/*=============== SHOW SCROLL UP ===============*/
const scrollUp = () =>{
const scrollUp = document.getElementById('scroll-up')
// When the scroll is higher than 350 viewport height, add the show-scroll class to the a tag with the scrollup class
this.scrollY >= 350 ? scrollUp.classList.add('show-scroll')
: scrollUp.classList.remove('show-scroll')
}
window.addEventListener('scroll', scrollUp)
/*=============== SCROLL REVEAL ANIMATION ===============*/
const sr = ScrollReveal({
origin: 'top',
distance : '60px',
duration: 2500,
delay: 400,
})
sr.reveal(`.home__data, .footer__container, .footer__group`)
sr.reveal(`.home__img`, {delay: 700, origin: 'bottom' })
sr.reveal(`.logos__img, .program__card, .pricing__card` , {interval: 100})
sr.reveal(`.choose__img, calculate__content`, {origin : 'reft'})
sr.reveal(`.choose__content, .calculate__img`, {origin : 'right'})
/*=============== CALCULATE JS ===============*/
const calculateForm = document.getElementById('calculate-form'),
calculateCm =document.getElementById('calculate-cm'),
calculateKg =document.getElementById('calculate-kg'),
calculateMessage =document.getElementById('calculate-message')
const calculateBmi = (e) =>{
e.preventDefault()
if(calculateCm.value === '' || calculateKg.value === ''){
calculateMessage.classList.remove('color-green')
calculateMessage.classList.add('color-red')
calculateMessage.textContent = 'Fill in the Height and Weight'
setTimeout(() =>{
calculateMessage.textContent = ''
}, 3000)
}
else {
const cm = calculateCm.value / 100,
kg = calculateKg.value,
bmi = Math.round(kg / (cm * cm))
if(bmi < 18.5){
calculateMessage.classList.add('color-green')
calculateMessage.textContent = `Your Bmi is ${bmi} and you are skinny π`
} else if(bmi < 25){
calculateMessage.classList.add('color-green')
calculateMessage.textContent = `Your Bmi is ${bmi} and you are healthy π`
} else {
calculateMessage.classList.add('color-green')
calculateMessage.textContent = `Your Bmi is ${bmi} and you are overweight π`
}
calculateCm.value = ''
calculateKg.value = ''
setTimeout(() =>{
calculateMessage.textContent = ''
},4000)
}
}
calculateForm.addEventListener('submit', calculateBmi)
/*=============== EMAIL JS ===============*/
const contactForm = document.getElementById('contact-form')
contactMessage = document.getElementById('contact-message')
contactUser = document.getElementById('contact-user')
const sendEmail = (e) =>{
e.preventDefault()
if(contactUser.value === ''){
contactMessage.classList.remove('color-green')
contactMessage.classList.add('color-green')
contactMessage.textContent = 'You must enter your email π'
setTimeout(() => {
contactMessage.textContent = ''
}, 3000)
}
}
contactForm.addEventListener('submit', sendEmail)