ok, what's the point of keeping such a secrecy about the code ?
Jomla is an open source, remind you, and I understand you need to protect your work but I'm a dev too and still rely on your products to deliver sites to my final customers...
It wasn't so hard to open up the template/artion/js/main.js and change the scrollposition to whatever you need...
// window scroll text animation
$(window).on("scroll", function () {
const scrollPosition = $(window).scrollTop();
if (scrollPosition > 580) {
$(".animated-text").addClass("animate");
$(".animated-text-section").css("zIndex", "9999");
} else {
$(".animated-text").removeClass("animate");
$(".animated-text-section").css("zIndex", "1");
}
});
});
Thanks for the support Mehtaz.