The Asset Client Logo Carousel is a custom carousel designed to showcase client logos and testimonials on a website. It provides an interactive and visually appealing way to display client logos and testimonials, allowing users to navigate through them easily.
- Display client logos and testimonials in a carousel format.
- Smooth transition between logos and testimonials.
- Automatic scrolling to showcase different logos and testimonials.
- Clickable navigation to manually switch between logos and testimonials.
- Responsive design for optimal viewing on different devices.
To use the Asset Client Logo Carousel in your project, follow these steps:
- Download the
customCarousel.js
file from this repository. - Include the
customCarousel.js
file in your project's HTML file. - Add the necessary HTML markup and CSS styles to create the carousel container and customize its appearance.
- Initialize the carousel by calling the appropriate functions or event listeners.
To use the Asset Client Logo Carousel, follow these guidelines:
- Create a container element in your HTML file to hold the carousel.
- Add the necessary HTML markup to define the structure of the carousel, including the client logos and testimonials.
- Customize the carousel's appearance using CSS styles.
- use jsdelivr or S3 to add
customCarousel.js
&customCarousel.css
to your page. - Test and preview the carousel in your web browser to ensure it functions as expected.
example of html structure in webflow page:
<div class="logo-testimonials_wrapper">
<div class="slider-logo_list-wrapper">
<!-- Add your client logos here -->
<div class="slider-logo_item">
<img src="logo1.png" alt="Client Logo 1" />
</div>
<div class="slider-logo_item">
<img src="logo2.png" alt="Client Logo 2" />
</div>
<!-- Add more client logos as needed -->
</div>
<div class="logo-testimonials_list">
<!-- Add your client testimonials here -->
<div class="logo-testimonials_item">
<p>Testimonial 1</p>
</div>
<div class="logo-testimonials_item">
<p>Testimonial 2</p>
</div>
<!-- Add more client testimonials as needed -->
</div>
</div>