2
I’m trying to make a continuous slider like this
<div class="owl-carousel owl-theme">
<div class="item">
<a href="#" title="">
<img src="portfolio/img/thumb01.jpg" alt="">
</a>
</div>
<div class="item">
<a href="#" title="">
<img src="portfolio/img/thumb02.png" alt="">
</a>
</div>
<div class="item">
<a href="#" title="">
<img src="portfolio/img/thumb03.png" alt="">
</a>
</div>
<div class="item">
<a href="#" title="">
<img src="portfolio/img/thumb04.jpg" alt="">
</a>
</div>
<div class="item">
<a href="#" title="">
<img src="portfolio/img/thumb05.png" alt="">
</a>
</div>
<div class="item">
<a href="#" title="">
<img src="portfolio/img/thumb06.png" alt="">
</a>
</div>
<div class="item">
<a href="#" title="">
<img src="portfolio/img/thumb07.png" alt="">
</a>
</div>
</div>
this can help you http://jsfiddle.net/mjaA3/2506/ is basically what you need
– goio