Fix JS issues hiding wiki info
This commit is contained in:
@@ -52,12 +52,7 @@
|
|||||||
</nav>
|
</nav>
|
||||||
<!-- Particles.js Container -->
|
<!-- Particles.js Container -->
|
||||||
<div id="particles-js" style="position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;"></div>
|
<div id="particles-js" style="position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;"></div>
|
||||||
<!-- Particle Effects -->
|
|
||||||
<div class="particle"></div>
|
|
||||||
<div class="particle large"></div>
|
|
||||||
<div class="particle"></div>
|
|
||||||
<div class="particle large"></div>
|
|
||||||
<div class="particle"></div>
|
|
||||||
|
|
||||||
<header class="header-bg py-16 text-center relative z-2">
|
<header class="header-bg py-16 text-center relative z-2">
|
||||||
<div class="header-content flex items-center justify-between max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
<div class="header-content flex items-center justify-between max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
|
@@ -24,7 +24,7 @@ const observer = new IntersectionObserver((entries) => {
|
|||||||
entry.target.style.transitionDelay = `${index * 0.1}s`;
|
entry.target.style.transitionDelay = `${index * 0.1}s`;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}, { threshold: 0.1 });
|
}, { threshold: 0.01 }); // Lowered from 0.1 to 0.01
|
||||||
|
|
||||||
sections.forEach(section => {
|
sections.forEach(section => {
|
||||||
section.style.transform = 'translateY(30px)';
|
section.style.transform = 'translateY(30px)';
|
||||||
|
Reference in New Issue
Block a user