我有2個傳送帶,一個在另一個下,我使用「navContainer」功能來改變導航箭頭的位置(我將它們放在滑塊上方)。貓頭鷹傳送帶導航不起作用
當我有一個滑塊,工作,但是當我有2(或更多),兩個滑塊的導航位於第一個「navhere」div。而不是那個,每個導航按鈕應該在它自己的div中。
你可以得到更好的主意什麼,我這裏說的:http://jsfiddle.net/vnpm1y06/226/
代碼是:
<div class="about">
<div id="navhere"></div> <!-- This is where nav should appear -->
<div class="owl-carousel">
<div class="item"><h4>About</h4></div>
<div class="item"><h4>Us</h4></div>
</div>
</div>
<div class="contact">
<div id="navhere"></div> <!-- This is where nav should appear -->
<div class="owl-carousel">
<div class="item"><h4>Contact</h4></div>
<div class="item"><h4>Form</h4></div>
</div>
</div>
jQuery是
.owlCarousel({
loop: true,
margin: 10,
nav: true,
dots:false,
items:1,
navContainer: '#navhere'
})
這裏可以很好地工作:http://jsfiddle.net/vnpm1y06/226/。是的,它顯示兩個,因爲兩個滑塊。每個滑塊都有自己的導航。 –
它確實滑動,但兩個滑塊的導航存儲在第一個「navhere」div中。他們應該是在他們自己的div。又名第二個div「navhere」是空的,這就是第二個幻燈片的導航應該顯示的地方 – Vlidurno
從腳本中刪除navcontainer並通過css管理他們的位置。 –