jQuery(document).ready(function($) { function scrollToSection(sectionID, duration) { $('html, body').animate({ scrollTop: $(sectionID).offset().top }, duration); } // Auto-scroll every 5 seconds between Residential and Group sections setInterval(function() { // Scroll to Residential section scrollToSection("#Residential", 1000); // Scroll duration is 1 second // After 3 seconds, scroll to Group section setTimeout(function() { scrollToSection("#Group", 1000); // Scroll duration is 1 second }, 3000); // Adjust timing as needed (3 seconds delay before scrolling to Group) }, 6000); // Adjust timing to repeat the process every 6 seconds });

HomePortfolioMass Productions

Mass Productions