document.addEventListener('scroll', function() { const stickyImage = document.querySelector('.sticky-image'); const stickyContainer = document.querySelector('.sticky-container'); const stickyEnd = document.querySelector('.sticky-end'); if (!stickyImage || !stickyContainer || !stickyEnd) return; const containerRect = stickyContainer.getBoundingClientRect(); const endRect = stickyEnd.getBoundingClientRect(); const imageRect = stickyImage.getBoundingClientRect(); if (endRect.top <= imageRect.bottom) { stickyImage.style.opacity = '0'; } else { stickyImage.style.opacity = '1'; } });

Media

Clean Oil

Every Time