I am using owl-carousel to make a slider
for a website. I could easily make a slider using the following code :
<div id="owl-slider" class="owl-carousel">
<div> <img src="images/1.jpg" /> </div>
<div> <img src="images/2.jpg" /> </div>
<div> <img src="images/3.jpg" /> </div>
<div> <img src="images/4.jpg" /> </div>
</div>
<script type="text/javascript">
$("#owl-slider").owlCarousel({
items : 1,
autoPlay : true,
slideSpeed : 200,
stopOnHover : true,
navigation : false
})
$(document).ready(function() {
$("#owl-slider").owlCarousel();
});
</script>
I also want to place some text on the images in the slider. Unique text for each image. How can I do this with owl-carousel ?