and changed it all again cause why not..
This commit is contained in:
parent
7ee236b067
commit
e6afb0f776
@ -3,23 +3,9 @@ document.addEventListener('DOMContentLoaded', function () {
|
||||
var h1 = document.querySelector('.user-index-h1');
|
||||
var h2 = document.querySelector('.user-index-h2');
|
||||
|
||||
// Function to check if an element is in the viewport
|
||||
function isInViewport(element) {
|
||||
var rect = element.getBoundingClientRect();
|
||||
return (
|
||||
rect.top >= 0 &&
|
||||
rect.left >= 0 &&
|
||||
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
|
||||
rect.right <= (window.innerWidth || document.documentElement.clientWidth)
|
||||
);
|
||||
}
|
||||
|
||||
// Function to handle the scroll event
|
||||
function handleScroll() {
|
||||
if (isInViewport(headerText)) {
|
||||
// Calculate the fade-in effect based on the scroll position
|
||||
var scrollFraction = window.scrollY / window.innerHeight;
|
||||
var translateX = -20 * (1 - scrollFraction);
|
||||
// Calculate the fade-in effect based on the window width
|
||||
var scrollFraction = window.innerWidth / window.innerWidth;
|
||||
var translateX = 20 * (1 - scrollFraction);
|
||||
var opacity = 1 - scrollFraction;
|
||||
|
||||
// Apply the fade-in effect to the elements
|
||||
@ -28,19 +14,4 @@ document.addEventListener('DOMContentLoaded', function () {
|
||||
|
||||
h2.style.transform = 'translateX(' + translateX + 'px)';
|
||||
h2.style.opacity = opacity;
|
||||
} else {
|
||||
// Reset styles if elements are out of the viewport
|
||||
h1.style.transform = 'translateX(-20px)';
|
||||
h1.style.opacity = 0;
|
||||
|
||||
h2.style.transform = 'translateX(-20px)';
|
||||
h2.style.opacity = 0;
|
||||
}
|
||||
}
|
||||
|
||||
// Attach the handleScroll function to the scroll event
|
||||
window.addEventListener('scroll', handleScroll);
|
||||
|
||||
// Initial check on page load
|
||||
handleScroll();
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user