Description
Introducing the Shade Shield Double Carport Shelter, a robust and stylish shelter designed to handle Australia’s outdoor challenges. With an expansive 6.0 x 5.5m footprint, it provides reliable protection for vehicles, boats, caravans, motorhomes or shade for outdoor living areas.
Engineered with a combination of aluminium alloy and powder coated steel, this carport offers exceptional strength and corrosion resistance. The polycarbonate roofing sheet ensures excellent shade and UV protection, while the structure’s wind resistance of up to 120 km/h guarantees peace of mind.
Upgrade your home with this Shade Shield Carport—built tough for the harsh Australian environment.
const scrollElements = document.querySelectorAll(".animate__animated");
scrollElements.forEach((el) => { el.style.opacity = 0 })
const elementInView = (el, dividend = 1) => { const elementTop = el.getBoundingClientRect().top;
return ( elementTop <= (window.innerHeight || document.documentElement.clientHeight) / dividend ); }; const elementOutofView = (el) => { const elementTop = el.getBoundingClientRect().top;
return ( elementTop > (window.innerHeight || document.documentElement.clientHeight) ); };
const displayScrollElement = (element) => { element.classList.add("animate__fadeIn"); };
const hideScrollElement = (element) => { element.classList.remove("animate__fadeIn"); };
const handleScrollAnimation = () => { scrollElements.forEach((el) => { if (elementInView(el, 1.25)) { displayScrollElement(el); } else if (elementOutofView(el)) { hideScrollElement(el) } }) }
window.addEventListener("scroll", () => { handleScrollAnimation(); });








