Description
Introducing the Shade Shield Aluminium Single Carport, a robust and stylish shelter designed to handle Australia’s outdoor challenges. With a spacious 5.5m x 3.0m footprint, it provides reliable protection for vehicles or shaded outdoor areas.
The cantilever-style design ensures better access and flexibility, ideal for driveways or tight spaces. 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 Shade Shield Carports—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(); });








