-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
61 lines (44 loc) · 1.62 KB
/
app.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
//NAVBAR
const hamburger = document.querySelector('.hamburger')
const navMenu = document.querySelector('.nav-menu')
const navLinks = navMenu.querySelectorAll('li');
hamburger.addEventListener("click", () => {
navMenu.classList.toggle('active')
hamburger.classList.toggle('active')
})
function closeMenu() {
hamburger.classList.remove("active")
navMenu.classList.remove('active')
}
navLinks.forEach((link) => {
link.addEventListener('click', closeMenu)
})
//PROGRESS BAR ANIMATION
document.addEventListener("DOMContentLoaded", function () {
const progressBar = document.querySelectorAll(".progress-bar")
function isInView(element) {
const rect = element.getBoundingClientRect()
const isLeftVisible = rect.left >= 0
const isTopVisible = rect.top >= 0
const isBottomVisible = rect.bottom <= (window.innerHeight || document.documentElement.clientHeight)
const isRightVisiible = rect.right <= (window.innerWidth || document.documentElement.clientWidth)
return isLeftVisible && isTopVisible && isBottomVisible && isRightVisiible
}
function animateProgress() {
progressBar.forEach(bar => {
if (isInView(bar)) {
const percentage = bar.getAttribute('data-percentage')
bar.querySelector(".bar").style.width = percentage + "%"
}
})
}
animateProgress()
window.addEventListener('scroll', animateProgress)
})
//EMAIL JS
function sendMail() {
const serviceID = "service_zf4kqmo";
const templateID = "template_gi9akxe";
const form = document.getElementById("contact-form")
emailjs.sendForm(serviceID, templateID, form).then(alert("Your Message Has Been Sent"))
}