Forex No Deposit and Deposit Bonus
Forex No Deposit and Deposit Bonus and offers
let lastScrollPosition = 0;
const footer = document.getElementById('xmStickyFooter');
window.addEventListener('scroll', function() {
const currentScrollPosition = window.pageYOffset || document.documentElement.scrollTop;
// Only show when scrolling down past 100px
if (currentScrollPosition > 100 && currentScrollPosition > lastScrollPosition) {
footer.classList.add('visible');
} else {
}
lastScrollPosition = currentScrollPosition;
});