Skip to content

Commit ca61e09

Browse files
intersection observer
i added a lot of elements and functions using intersection observers
1 parent 9c06cdb commit ca61e09

File tree

1 file changed

+29
-37
lines changed

1 file changed

+29
-37
lines changed

script.js

+29-37
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,37 @@
1-
const faders = document.querySelectorAll(".scene-text-conteiner");
2-
3-
const appearOptions = {};
4-
5-
const appearOnScroll = new IntersectionObserver(function (
6-
entries,
7-
appearOnScroll
8-
) {
9-
entries.forEach((entry) => {
10-
if (!entry.isIntersecting) {
11-
return;
12-
} else {
13-
entry.target.classList.add("appear");
14-
appearOnScroll.unobserve(entry.target);
1+
// Observer for .scene-text-container
2+
const textObserver = new IntersectionObserver(function(entries, observer) {
3+
entries.forEach(entry => {
4+
if (entry.isIntersecting && !entry.target.classList.contains('showTextAnimation')) {
5+
entry.target.classList.add('showTextAnimation');
156
}
167
});
17-
},
18-
appearOptions);
8+
}, { threshold: 0.3 });
199

20-
faders.forEach((fader) => {
21-
appearOnScroll.observe(fader);
10+
// Observer for .background-plants-right
11+
const plantObserverRight = new IntersectionObserver(function(entries, observer) {
12+
entries.forEach(entry => {
13+
if (entry.isIntersecting && !entry.target.classList.contains('showPlantRightAnimation')) {
14+
entry.target.classList.add('showPlantRightAnimation');
15+
}
16+
});
2217
});
2318

24-
const coral = document.querySelectorAll(".scene2-pink-coral");
25-
26-
const coralOptions = {};
27-
28-
const appearOnScroll = new IntersectionObserver(function (
29-
entries,
30-
appearOnScroll
31-
) {
32-
entries.forEach((entry) => {
33-
if (!entry.isIntersecting) {
34-
return;
35-
} else {
36-
entry.target.classList.add("left-animation");
37-
appearOnScroll.unobserve(entry.target);
19+
// Observer for .background-plants-left
20+
const plantObserverLeft = new IntersectionObserver(function(entries, observer) {
21+
entries.forEach(entry => {
22+
if (entry.isIntersecting && !entry.target.classList.contains('showPlantLeftAnimation')) {
23+
entry.target.classList.add('showPlantLeftAnimation');
3824
}
3925
});
40-
},
41-
appearOptions);
42-
43-
faders.forEach((fader) => {
44-
appearOnScroll.observe(fader);
4526
});
27+
28+
// Elements to observe
29+
const textElements = document.querySelectorAll('.scene-text-conteiner');
30+
const plantElementsRight = document.querySelectorAll('.background-plants-right');
31+
const plantElementsleft = document.querySelectorAll('.background-plants-left');
32+
const h3Element = document.querySelector('h3');
33+
34+
// Add observers to elements
35+
textElements.forEach(el => textObserver.observe(el));
36+
plantElementsRight.forEach(el => plantObserverRight.observe(el));
37+
plantElementsleft.forEach(el => plantObserverLeft.observe(el));

0 commit comments

Comments
 (0)