CSS Infinity Brand Component

A Tailwind CSS infinity brand scroll effect component featuring continuous brand logo animations and seamless infinite scrolling. Perfect for showcasing client logos, brand partnerships, and company testimonials with smooth CSS animations.

Add the following animations to your tailwind.config.js file:

tailwind.config = {
theme: {
extend: {
animation: {
'infinite-scroll': 'infinite-scroll 25s linear infinite',
},
keyframes: {
'infinite-scroll': {
from: { transform: 'translateX(0)' },
to: { transform: 'translateX(-100%)' },
},
},
},
},
};