-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
25 lines (21 loc) · 878 Bytes
/
index.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
const skillsSection = document.querySelector('#skills');
const projectsSection = document.querySelector('#projects');
const workSection = document.querySelector('#work');
const firstTitleLetters = document.querySelectorAll('#first-title span');
const secondTitleLetters = document.querySelectorAll('#second-title span');
firstTitleLetters.forEach((span, index) => {
span.setAttribute('style', `animation-delay: ${0.05 + (index / 20)}s`);
});
secondTitleLetters.forEach((span, index) => {
span.setAttribute('style', `animation-delay: ${0.65 + (index / 20)}s`);
});
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('fade-up-animation');
}
});
}, { threshold: 0.4 });
observer.observe(skillsSection);
observer.observe(projectsSection);
observer.observe(workSection);