Abetta Couriers - 2 Dec 2024

Navigating the Peak Season – How Couriers Weather the Storm

The festive seasons brings joy and celebrations, but for couriers, it marks the busiest and…

We use cookies to ensure that we give you the best experience on our website.

document.addEventListener('DOMContentLoaded', function () { const ticker = document.getElementById('ticker-list'); const ulElement = ticker.querySelector('ul'); const listItems = Array.from(ulElement.querySelectorAll('li')); listItems.forEach(item => { const clone = item.cloneNode(true); ulElement.appendChild(clone); }); let scrollAmount = 0; const speed = 1; // Adjust the speed of scrolling (higher is faster) function animateTicker() { scrollAmount += speed; if (scrollAmount >= ulElement.scrollWidth / 2) { scrollAmount = 0; // Reset scroll to create a seamless loop } ulElement.style.transform = `translateX(-${scrollAmount}px)`; requestAnimationFrame(animateTicker); } // Set initial styles ulElement.style.display = 'flex'; ulElement.style.whiteSpace = 'nowrap'; ulElement.style.willChange = 'transform'; ulElement.style.transform = `translateX(0px)`; // Start the animation requestAnimationFrame(animateTicker); });