|
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'); |
15 | 6 | }
|
16 | 7 | });
|
17 |
| -}, |
18 |
| -appearOptions); |
| 8 | +}, { threshold: 0.3 }); |
19 | 9 |
|
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 | + }); |
22 | 17 | });
|
23 | 18 |
|
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'); |
38 | 24 | }
|
39 | 25 | });
|
40 |
| -}, |
41 |
| -appearOptions); |
42 |
| - |
43 |
| -faders.forEach((fader) => { |
44 |
| - appearOnScroll.observe(fader); |
45 | 26 | });
|
| 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