fbpx
Back
User Avatar

Brendan Correia

I'm a seasoned communications and marketing professional with over 20 years of experience in the field. I built my first website in 1998 and have been an active participant in the evolution of digital marketing ever since. With a deep understanding of social media, having been engaged on various platforms for over 17 years, I bring a wealth of knowledge and practical skills to every project I undertake. I'm also the founder of creatorhive.pro, dedicated to helping people learn and thrive in the digital landscape. and also the founder of mydigitagency.ai, where our goal is to create accessible, high-quality websites and AI chatbots that drive business growth, improve customer engagement, and enhance operational efficiency.
14 Courses
3 Students
jQuery(document).ready(function($) { var $counterReveal = $('.counter-reveal-duplicate'); var $sectionAbove = $('.counter-reveal'); // Section above the duplicate var $blogCarousel = $('.blog-carousel'); // Section below $(window).on('scroll', function() { var scrollPosition = $(window).scrollTop(); var sectionAboveOffset = $sectionAbove.offset().top; var sectionAboveHeight = $sectionAbove.outerHeight(); var blogCarouselOffset = $blogCarousel.offset().top; // Trigger reveal when scrolled halfway through the section above if (scrollPosition > sectionAboveOffset + (sectionAboveHeight / 2) && scrollPosition < blogCarouselOffset - 100) { $counterReveal.addClass('reveal'); } else { $counterReveal.removeClass('reveal'); } // Manage the hide behavior when scrolling past the blog-carousel if (scrollPosition > blogCarouselOffset) { $blogCarousel.addClass('scrolled-past'); } else { $blogCarousel.removeClass('scrolled-past'); } }); });