我正在尝试将“选定”类添加到“url 哈希按钮”。
查看原始演示:http ://www.owlcarousel.owlgraphic.com/demos/urlhashnav.html
我希望它<a class="button secondary url" href="#zero">zero</a>
会<a class="button secondary url selected" href="#zero">zero</a>
在单击它时更改为,或者在它上面自动播放项目,或者在它上面拖动/滑动项目。
我尝试使用一个按钮进行测试,但它不起作用:
HTML:
<div id="owl-appt" class="owl-carousel">
<div class="item one" data-hash="one"><img src="img/gallery/home/appt1/1.jpg" alt=""></div>
<div class="item two" data-hash="two"><img src="img/gallery/home/appt1/2.jpg" alt=""></div>
<div class="item three" data-hash="three"><img src="img/gallery/home/appt1/3.jpg" alt=""></div>
</div>
<a class="url one" href="#one"><img src="img/gallery/home/appt1/s1.jpg" /></a>
<a class="url two" href="#two"><img src="img/gallery/home/appt1/s2.jpg" /></a>
<a class="url three" href="#three"><img src="img/gallery/home/appt1/s3.jpg" /></a>
JS:
$("#owl-appt").owlCarousel(
{
items : 1,
autoplay:false,
animateOut: 'fadeOut',
loop:false,
responsive: true,
callbacks: true,
URLhashListener:true,
startPosition: '#one',
});
if($("#owl-appt .item.one").parent().is(".active")){
$("a.url.one").addClass("selected");
}else{
$("a.url.one").removeClass("selected");
};