Nueces County

Protex Roofing is proud to serve the Neuces County with exceptional roofing and gutter services. Our dedicated team is committed to delivering high-quality residential and commercial roofing and gutter solutions to meet your needs.

What Communities Do We Serve?

  • Corpus Christi
  • Port Aransas
  • Robstown
  • Flour Bluff
  • Bishop
  • Banquette
  • Agua Dulce
  • Driscoll
  • Petronila
  • Tierra Verde
  • Tierra Grande

Services Offered in Neuces County

  • Commercial Roofing
  • Residential Roofing
  • Storm Restoration
  • Insurance Expertise
document.addEventListener("DOMContentLoaded", function () { gsap.registerPlugin(ScrollTrigger); // Debugging: Check if ScrollTrigger is registered console.log("ScrollTrigger registered:", ScrollTrigger); // Animate elements with data-waypoint="this" let waypointThisElements = gsap.utils.toArray('[waypoint="this"]'); // console.log("waypointThisElements:", waypointThisElements); waypointThisElements.forEach((element) => { console.log("Animating element:", element); gsap.from(element, { opacity: 0, y: 25, duration: 1, ease: "power3.inOut", scrollTrigger: { trigger: element, start: "top 80%", end: "bottom 50%", toggleActions: "play none none pause", // markers: true, }, }); }); // Animate children of elements with data-waypoint="these" let waypointTheseElements = gsap.utils.toArray('[waypoint="these"]'); // console.log("waypointTheseElements:", waypointTheseElements); waypointTheseElements.forEach((parentElement) => { let children = parentElement.children; console.log("Animating children of:", parentElement, "Children:", children); gsap.from(children, { opacity: 0, y: 25, duration: 1, ease: "power3.inOut", stagger: 0.2, scrollTrigger: { trigger: parentElement, start: "top 80%", end: "bottom 50%", toggleActions: "play none none pause", // markers: true, }, }); }); });