We bring core features

We're eager to learn about your goals. Contact us today for a free consultation and discover how we can drive real results.

You Have Questions, We Have Answers

We're here to answer your questions, discuss your project, and help you find the best solutions for your needs. Reach out to us, and let's start building something great together.

Location

Dubai, United Arab Emirates

Contact Number

+971 50 249 9707

Email Address

marketing@creovate.ae

document.addEventListener("DOMContentLoaded", () => { const banner = document.querySelector(".scroll-zoom-banner"); const media = banner?.querySelector(".scroll-zoom-media"); if (!banner || !media) { console.warn("Scroll zoom banner elements were not found."); return; } let ticking = false; function updateBannerZoom() { const bannerRect = banner.getBoundingClientRect(); const bannerHeight = banner.offsetHeight; /* * Progress: * 0 = banner at its starting position * 1 = banner has been scrolled past */ const scrolledDistance = Math.max(0, -bannerRect.top); const progress = Math.min(scrolledDistance / bannerHeight, 1); /* Change 0.18 to increase or decrease zoom strength */ const zoomAmount = 1 + progress * 0.18; media.style.transform = `scale(${zoomAmount})`; ticking = false; } function requestZoomUpdate() { if (!ticking) { window.requestAnimationFrame(updateBannerZoom); ticking = true; } } window.addEventListener("scroll", requestZoomUpdate, { passive: true }); window.addEventListener("resize", requestZoomUpdate); updateBannerZoom(); });