本文介绍了如何使用owlcarousel不能看到点/导航按钮?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
导航按钮是如何显示的?
我使用 jQuery
和 owlcarousel
(
How come the navigation buttons are not visible?
I'm using jQuery
and owlcarousel
(http://owlgraphic.com/owlcarousel/).
http://jsfiddle.net/bobbyrne01/s10bgckL/1/
html
..
<div id="owl-demo">
<div class="item">
<img src="http://placehold.it/50x50" alt="Owl Image" />
</div>
<div class="item">
<img src="http://placehold.it/50x50" alt="Owl Image" />
</div>
<div class="item">
<img src="http://placehold.it/50x50" alt="Owl Image" />
</div>
<div class="item">
<img src="http://placehold.it/50x50" alt="Owl Image" />
</div>
<div class="item">
<img src="http://placehold.it/50x50" alt="Owl Image" />
</div>
<div class="item">
<img src="http://placehold.it/50x50" alt="Owl Image" />
</div>
<div class="item">
<img src="http://placehold.it/50x50" alt="Owl Image" />
</div>
<div class="item">
<img src="http://placehold.it/50x50" alt="Owl Image" />
</div>
</div>
js
..
$(document).ready(function () {
$("#owl-demo").owlCarousel({
autoPlay: 3000, //Set AutoPlay to 3 seconds
dots: true,
items: 2,
itemsDesktop: [1199, 3],
itemsDesktopSmall: [979, 3]
});
});
css
..
#owl-demo .item {
margin: 3px;
}
#owl-demo .item img {
display: block;
width: 50%;
height: auto;
}
解决方案
The minified css file you have doesn't appear to have a style for that element: .owl-theme .owl-controls .owl-page span
.
Here are the styles that are applied by the demo on the owlgraphic.com site:http://jsfiddle.net/s10bgckL/2/
这篇关于如何使用owlcarousel不能看到点/导航按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!