We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fedf927 commit 259c95aCopy full SHA for 259c95a
1 file changed
docs/index.html
@@ -460,7 +460,10 @@ <h2>Configuration</h2>
460
// Fade-in animation on scroll
461
const observer = new IntersectionObserver((entries) => {
462
entries.forEach(entry => {
463
- if (entry.isIntersecting) entry.target.classList.add('visible')
+ if (entry.isIntersecting) {
464
+ entry.target.style.opacity = '1'
465
+ entry.target.style.transform = 'translateY(0)'
466
+ }
467
})
468
}, { threshold: 0.1, rootMargin: '0px 0px -40px 0px' })
469
0 commit comments