Answer the question
In order to leave comments, you need to log in
How to create such a slider?
Hello. Please help me how to create such a slider?
Answer the question
In order to leave comments, you need to log in
As the simplest option:
A container with overflow-x: hidden
, it has a flexbox line (wider than the container) with fixed-width divs, logos with a background ( background-size: contain;
), a js function for scrolling the line left-right when clicking on the arrows.
<a id="arrowLeft" href="#" onclick="myFunction(-1)"></a>
<a id="arrowRight" href="#" onclick="myFunction(1)"></a>
function myFunction(direction){
//...
}
take one of the popular slick or owl sliders and create.
You will only need to add your own styles for the arrows
a simple slider, you take slick and there in the slidePerShow property (I'm not sure if I wrote it correctly, well, you'll figure it out), you specify 5.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question