how to make a carousel. 1) to consist of two pictures 2) Put the label if there is a code, skip, please, just to insert pictures
Closed due to the fact that the essence of the question is incomprehensible by the participants Alexey Shimansky , aleksandr barakin , cheops , Nicolas Chabanovsky ♦ Jul 9 '16 at 4:21 .
Try to write more detailed questions. To get an answer, explain what exactly you see the problem, how to reproduce it, what you want to get as a result, etc. Give an example that clearly demonstrates the problem. If the question can be reformulated according to the rules set out in the certificate , edit it .
|
1 answer
FlexSlider to help you (it is also adaptive)
HTML:
<div class="flexslider"> <ul class="slides"> <li> <img src="slide1.jpg" /> </li> <li> <img src="slide2.jpg" /> </li> <li> <img src="slide3.jpg" /> </li> <li> <img src="slide4.jpg" /> </li> </ul> </div>
Js:
$(window).load(function() { $('.flexslider').flexslider({ animation: "slide" }); });
|